On Wed, 2002-01-02 at 12:18, emanuel goldstein wrote: > Today I attempted to install X from cvs. Make world > worked fine, but when i attempted to make the install > target the process exited with the errors pasted > below. This is the first time I've attempted to > install from cvs, so if I am doing something wrong I > appologize.
make World doesn't stop on errors. It's a good idea to do something like make World 2>&1|tee World.log and then grep '\*\*\*' World.log and if there are matches check the log for the errors. > This is where the error occurs: > > sis_alloc.c: In function `sis_alloc_fb': > sis_alloc.c:124: `SIS_IOCTL_FB_ALLOC' undeclared > (first use in this function) > sis_alloc.c:124: (Each undeclared identifier is > reported only once > sis_alloc.c:124: for each function it appears in.) > sis_alloc.c: In function `sis_free_fb': > sis_alloc.c:154: `SIS_IOCTL_FB_FREE' undeclared (first > use in this function) > sis_alloc.c: In function `sis_alloc_agp': > sis_alloc.c:197: `SIS_IOCTL_AGP_ALLOC' undeclared > (first use in this function) > sis_alloc.c: In function `sis_free_agp': > sis_alloc.c:224: `SIS_IOCTL_AGP_FREE' undeclared > (first use in this function) > sis_alloc.c: In function `sis_alloc_z_stencil_buffer': > > > I've failed to locate these SIS_IOCTL* constants > anywhere. I appreciate any help you are able to give > me. They're defined in programs/Xserver/hw/xfree86/os-support/linux/drm/kernel/drm.h. It's probably picking up drm.h from somewhere else, that's all I can say. -- Earthling Michel D�nzer (MrCooper)/ Debian GNU/Linux (powerpc) developer XFree86 and DRI project member / CS student, Free Software enthusiast _______________________________________________ Xpert mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xpert
