diff options
author | jmz <jmz@FreeBSD.org> | 1996-07-19 22:41:40 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1996-07-19 22:41:40 +0800 |
commit | bdeb0c529abc71ea7d52b4e74fb38eaca3a14cfe (patch) | |
tree | 6ca6a24758fc8a15e58464fc0554730ebec93b58 /x11/XFree86-4 | |
parent | 4ba7028379394253ff47c18cfcb224fce4270fc0 (diff) | |
download | freebsd-ports-gnome-bdeb0c529abc71ea7d52b4e74fb38eaca3a14cfe.tar.gz freebsd-ports-gnome-bdeb0c529abc71ea7d52b4e74fb38eaca3a14cfe.tar.zst freebsd-ports-gnome-bdeb0c529abc71ea7d52b4e74fb38eaca3a14cfe.zip |
Fix a bug caused by a undefined variable in some cases.
Do not ask if Kerberos support is wanted when libkrb is not installed.
Diffstat (limited to 'x11/XFree86-4')
-rw-r--r-- | x11/XFree86-4/scripts/configure | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/x11/XFree86-4/scripts/configure b/x11/XFree86-4/scripts/configure index dc88893227ac..db05ffbe54a1 100644 --- a/x11/XFree86-4/scripts/configure +++ b/x11/XFree86-4/scripts/configure @@ -131,8 +131,10 @@ if [ $answ = YES ]; then cpwh=$FILESDIR/Wraphelp.c else echo "==> Wraphelp.c not found, DES support NOT enabled." - answ=NO + cpwh=NO fi +else + cpwh=NO fi echo "#undef HadXdmAuth" >> $F echo "#define HasXdmAuth $answ" >> $F @@ -145,15 +147,19 @@ cat <<'END' END -yesno "Do you want to add the Kerberos V4 support patches? [YES] " -k4patch=$answ -if [ $k4patch = YES ] ; then - echo - yesno "Do you want to enable Kerberos V4 support? [YES] " - echo "#undef HasKrb4" >>$F - echo "#define HasKrb4 $answ" >>$F +if [ ! -f /usr/lib/libkrb.a ]; then + echo "No kerberos library in /usr/lib. Kerberos V4 support disabled." + k4patch=NO +else + yesno "Do you want to add the Kerberos V4 support patches? [YES] " + k4patch=$answ + if [ $k4patch = YES ] ; then + echo + yesno "Do you want to enable Kerberos V4 support? [YES] " + echo "#undef HasKrb4" >>$F + echo "#define HasKrb4 $answ" >>$F + fi fi - echo echo "End of configuration questions. No more user input required" echo |