summaryrefslogtreecommitdiff
path: root/x11/XFree86/scripts/configure
diff options
context:
space:
mode:
Diffstat (limited to 'x11/XFree86/scripts/configure')
-rw-r--r--x11/XFree86/scripts/configure25
1 files changed, 24 insertions, 1 deletions
diff --git a/x11/XFree86/scripts/configure b/x11/XFree86/scripts/configure
index 7b0dd6664444..e19c0c5e5310 100644
--- a/x11/XFree86/scripts/configure
+++ b/x11/XFree86/scripts/configure
@@ -101,6 +101,18 @@ if [ X"${MACHINE}" = X"pc98" ]; then
echo "#undef XF86${i}Server" >>$F
echo "#define XF86${i}Server NO" >>$F
done
+elif [ X"${MACHINE}" = X"alpha" ]; then
+# force the compilation of the SVGA server.
+ echo "#undef XF86SVGAServer" >>$F
+ echo "#define XF86SVGAServer YES" >>$F
+ servers="Mono S3 S3V Mach64 P9000 I128 GLINT TGA"
+ selected=SVGA
+ for i in $servers; do
+ yesno "Do you want to build the $i server?"
+ if [ $answ = YES ]; then selected="$selected $i"; fi
+ echo "#undef XF86${i}Server" >>$F
+ echo "#define XF86${i}Server $answ" >>$F
+ done
else
# force the compilation of the SVGA server.
echo "#undef XF86SVGAServer" >>$F
@@ -139,6 +151,13 @@ yesno "Do you want to build Xvfb?"
echo "#define XVirtualFramebufferServer $answ" >>$F
if [ X"${MACHINE}" != X"pc98" ]; then
+if [ X"${MACHINE}" = X"alpha" ]; then
+cat >> $F <<END
+#define XF86SvgaDrivers nv mga s3v generic
+
+#define XF86MonoDrivers hgc1280 sigma apollo hercules
+END
+else
cat >> $F <<END
#define XF86SvgaDrivers nv et4000 et3000 pvga1 gvga ati sis tvga8900 \
cirrus ncr77c22 compaq mga oak al2101 ali \
@@ -158,6 +177,8 @@ cat >> $F <<END
END
fi
+fi
+
cat <<END
@@ -199,7 +220,9 @@ if [ $answ = NO ]; then
echo "#undef BuildXInputExt" >> $F
echo "#define BuildXInputExt NO" >> $F
else
- echo "#define JoystickSupport YES" >> $F
+ if [ X${MACHINE} != X"alpha" ]; then
+ echo "#define JoystickSupport YES" >> $F
+ fi
fi
yesno "Build PEX?"