diff options
author | anholt <anholt@FreeBSD.org> | 2002-07-15 04:26:33 +0800 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2002-07-15 04:26:33 +0800 |
commit | 5096ecbaddf6e667e6440d3b278a941a9bdbba08 (patch) | |
tree | 590861705e9e97ee0bdfc3c32c53468bc37ab493 /x11-servers/XFree86-4-Server-snap/scripts | |
parent | 72b0c45fd6ba2667664f3155ad979614841d6d9c (diff) | |
download | freebsd-ports-gnome-5096ecbaddf6e667e6440d3b278a941a9bdbba08.tar.gz freebsd-ports-gnome-5096ecbaddf6e667e6440d3b278a941a9bdbba08.tar.zst freebsd-ports-gnome-5096ecbaddf6e667e6440d3b278a941a9bdbba08.zip |
Take over maintainership of XFree86-4 ports. Add patches to fix libGLU on
-current, fix the DRI with Wine, update the config files for the X ports, and
fix many of them to allow continuing of the X build after interruption (it
used to clean and rebuild).
Approved by: will, des (mentor)
Diffstat (limited to 'x11-servers/XFree86-4-Server-snap/scripts')
-rw-r--r-- | x11-servers/XFree86-4-Server-snap/scripts/configure | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/x11-servers/XFree86-4-Server-snap/scripts/configure b/x11-servers/XFree86-4-Server-snap/scripts/configure index 7b98c307c507..b7f67d6c4d8b 100644 --- a/x11-servers/XFree86-4-Server-snap/scripts/configure +++ b/x11-servers/XFree86-4-Server-snap/scripts/configure @@ -25,7 +25,7 @@ configure () { # It's good for FreeBSD ports/packages system. echo "#define NothingOutsideProjectRoot YES" >> $LOCALDEF - # Now, We can use this configuration. + # Now, we can use this configuration. # Thanks, Trevor Johnson <trevor@jpj.net> echo "#define InstallXserverSetUID NO" >> $LOCALDEF @@ -79,25 +79,28 @@ configure () { echo "#define XF86Server YES" >> $LOCALDEF echo "#define BuildServersOnly YES" >> $LOCALDEF echo "#define BuildXFree86ConfigTools YES" >> $LOCALDEF + + # More of the i386 drivers could probably move to XF86CardDrivers. + # Is fbdev driver useful to us? + # GlideDriver was left out because we have no Glide2 package. cat >> $LOCALDEF <<END #ifndef XF86CardDrivers #ifdef i386Architecture -#define XF86CardDrivers mga glint nv tga s3 s3virge sis rendition \ - neomagic i740 tdfx savage \ - cirrus vmware tseng trident chips apm \ - GlideDriver fbdev i128 \ - ati AgpGartDrivers DevelDrivers ark cyrix \ - siliconmotion \ - vesa vga XF86OSCardDrivers XF86ExtraCardDrivers -#else -#ifdef AlphaArchitecture -#define XF86CardDrivers mga tdfx glint s3 s3virge rendition tga \ - savage nv DevelDrivers siliconmotion vga \ - XF86OSCardDrivers XF86ExtraCardDrivers -#endif +#define ArchSpecificDrivers apm ark chips cirrus cyrix fbdev i740 \ + i128 i810 neomagic sis trident tseng \ + vesa vmware +#define DriDrivers gamma tdfx mga i810 i830 r128 radeon sis +#elif defined(AlphaArchitecture) +#define ArchSpecificDrivers +#define DriDrivers gamma tdfx mga r128 radeon #endif +#define XF86CardDrivers ati glint mga nv rendition s3 s3virge \ + savage siliconmotion tdfx tga vga \ + ArchSpecificDrivers DevelDrivers \ + XF86OSCardDrivers XF86ExtraCardDrivers #endif END + echo "#define BuildThreadStubLibrary YES" >> $LOCALDEF echo "#define FreeBSDBuildXxserv YES" >> $LOCALDEF |