Hi, On Wed, May 27, 2015 at 08:56:01PM +0200, Matthias Kilian wrote: > I just ran into the same problem, with the trees updated this > afternoon. > > > > /usr/xenocara/driver/xf86-video-mach64/src/atipreinit.c: In function > > > 'ATIPreInit': > > > /usr/xenocara/driver/xf86-video-mach64/src/atipreinit.c:703: error: > > > 'pInt10Info' undeclared (first use in this function) > > > > That is only reached if TV_OUT is defined... but TV_OUT is *not* > > defined in the build. > > I've > > #define TV_OUT 1 > > in /usr/xobj/driver/xf86-video-mach64/config.h, and my build log shows > > checking whether to include TV Out support... yes > > for xf86-video-mach64.
Neither the OP nor me mentioned that it happens specifically on i386. Looks like TV Out is automagically enabled for i386. From /usr/xenocara/driver/xf86-video-mach64/configure.ac: ATIMISC_CPIO=no ATIMISC_DGA=yes ATIMISC_TV_OUT=no case $host_cpu in i*86) ATIMISC_TV_OUT=yes ATIMISC_CPIO=yes ;; x86_64|amd64|alpha|ia64) ATIMISC_CPIO=yes ;; sparc) ATIMISC_DGA=no ;; *) ;; esac I'll give this a try Index: configure.ac =================================================================== RCS file: /cvs/xenocara/driver/xf86-video-mach64/configure.ac,v retrieving revision 1.6 diff -u -p -r1.6 configure.ac --- configure.ac 23 May 2015 15:26:41 -0000 1.6 +++ configure.ac 27 May 2015 19:22:15 -0000 @@ -126,7 +126,6 @@ ATIMISC_TV_OUT=no case $host_cpu in i*86) - ATIMISC_TV_OUT=yes ATIMISC_CPIO=yes ;; x86_64|amd64|alpha|ia64) Ciao, Kili