aboutsummaryrefslogtreecommitdiff
path: root/x11/XFree86-4
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>2000-10-25 01:39:01 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>2000-10-25 01:39:01 +0000
commit18eb8b0d2ac8db826f716332006c484b3c9ac017 (patch)
tree7f3588f911bbdc1f0be635b5875609f23250b612 /x11/XFree86-4
parent7c3dbda98c1beaf98cc47277094566b0854fc33e (diff)
downloadports-18eb8b0d2ac8db826f716332006c484b3c9ac017.tar.gz
ports-18eb8b0d2ac8db826f716332006c484b3c9ac017.zip
Notes
Diffstat (limited to 'x11/XFree86-4')
-rw-r--r--x11/XFree86-4/scripts/configure22
1 files changed, 8 insertions, 14 deletions
diff --git a/x11/XFree86-4/scripts/configure b/x11/XFree86-4/scripts/configure
index 30b2d842e832..7fa504b0ab4b 100644
--- a/x11/XFree86-4/scripts/configure
+++ b/x11/XFree86-4/scripts/configure
@@ -208,27 +208,22 @@ else
fi
yesno YES "Build PEX?"
-if [ $answ = NO ]; then
- echo "#define BuildPexExt NO" >> $F
-fi
+echo "#define BuildPexExt $answ" >> $F
+
yesno YES "Build Xinerama?"
echo "#define BuildXinerama $answ" >> $F
yesno YES "Build XIE?"
-if [ $answ = NO ]; then
- echo "#define BuildXIE NO" >> $F
-fi
+echo "#define BuildXIE $answ" >> $F
echo
# XXX We may not want to default this to 'YES' if there are any app-default
# files installed
yesno YES "Install application defaults files?"
-if [ $answ = NO ]; then
- echo "#define InstallAppDefFiles NO" >> $F
-fi
+echo "#define InstallAppDefFiles $answ" >> $F
yesno YES "Build static libraries in addition to shared libraries?"
-echo "#define ForceNormalLib YES" >> $F
+echo "#define ForceNormalLib $answ" >> $F
if [ ${OSVERSION} -ge 300000 ]; then
cat <<'END'
@@ -240,7 +235,7 @@ cat <<'END'
END
yesno YES "Build with Secure RPC?"
-echo "#define HasSecureRPC YES" >> $F
+echo "#define HasSecureRPC $answ" >> $F
fi
cat <<'END'
@@ -287,9 +282,8 @@ if [ $cpwh != NO ]; then
fi
echo
-# no PAM support in XFree86-4 !
-#yesno YES "Do you want to compile with PAM support?"
-#echo "#define HasPam $answ" >> $F
+yesno YES "Do you want to compile with PAM support?"
+echo "#define HasPam $answ" >> $F
echo
echo