summaryrefslogtreecommitdiff
path: root/x11-servers/XFree86-4-NestServer/scripts
diff options
context:
space:
mode:
authorFUJISHIMA Satsuki <sf@FreeBSD.org>2002-01-06 20:55:22 +0000
committerFUJISHIMA Satsuki <sf@FreeBSD.org>2002-01-06 20:55:22 +0000
commit2fceaeca3d72297d7f5534f4633eefd62c8231de (patch)
tree8b256dc623b3a95fb13cdb65a3782cd9de466861 /x11-servers/XFree86-4-NestServer/scripts
parentFix for building on -CURRENT without <malloc.h> (diff)
configure exits with error if
- USA_RESIDENT=YES and - imake-4 assumes HasXdmAuth=YES and - Wraphelp.c can't be found.
Notes
Notes: svn path=/head/; revision=52671
Diffstat (limited to 'x11-servers/XFree86-4-NestServer/scripts')
-rw-r--r--x11-servers/XFree86-4-NestServer/scripts/configure32
1 files changed, 20 insertions, 12 deletions
diff --git a/x11-servers/XFree86-4-NestServer/scripts/configure b/x11-servers/XFree86-4-NestServer/scripts/configure
index a26747aa19f2..4f644af47812 100644
--- a/x11-servers/XFree86-4-NestServer/scripts/configure
+++ b/x11-servers/XFree86-4-NestServer/scripts/configure
@@ -50,26 +50,34 @@ configure () {
echo "#define BuildServersOnly YES" >> $LOCALDEF
# Check Wraphelp.c
- WH=$WRKDIR/xc/lib/Xdmcp/Wraphelp.c
- cpwh=NO
- if [ -f $WH ] ; then
- cpwh=SOURCE
- elif [ -f $DISTDIR/xc/Wraphelp.c ] ; then
- cpwh=$DISTDIR/xc/Wraphelp.c
- else
- echo "==> Warnning: Wraphelp.c not found, DES support NOT enabled."
+ if [ $HasXdmAuth = DEFAULT ]; then
+ HasXdmAuth=$(awk '/^#define.*HasXdmAuth/ {print $3}' $ORIGDEF|tail -1)
fi
- if [ X$cpwh != XNO -a X$cpwh != XSOURCE ]; then
- tr -d '\r' < $cpwh > $WH
+
+ cpwh=NO
+ if [ $HasXdmAuth = YES ]; then
+ WH=$WRKDIR/xc/lib/Xdmcp/Wraphelp.c
+ if [ -f $WH ] ; then
+ cpwh=SOURCE
+ elif [ -f $DISTDIR/xc/Wraphelp.c ] ; then
+ cpwh=$DISTDIR/xc/Wraphelp.c
+ else
+ echo "==> You must fetch USA-legal Wraphelp.c manually"
+ echo "==> and put it to ${DISTDIR}/xc/."
+ exit 1
+ fi
+ if [ X$cpwh != XNO -a X$cpwh != XSOURCE ]; then
+ tr -d '\r' < $cpwh > $WH
+ fi
fi
# Copy ORIGDEF to DESTDEF
rm -f $DESTDEF
+ grep -v '#define.*HasXdmAuth' $ORIGDEF >> $DESTDEF
if [ $cpwh = NO ] ; then
- grep -v '#define.*HasXdmAuth' $ORIGDEF >> $DESTDEF
echo "#define HasXdmAuth NO" >> $DESTDEF
else
- cp -f $ORIGDEF $DESTDEF
+ echo "#define HasXdmAuth YES" >> $DESTDEF
fi
# copy generated config to host.def