diff options
author | Mark Murray <markm@FreeBSD.org> | 1995-11-23 14:28:52 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1995-11-23 14:28:52 +0000 |
commit | 663e5de109c526de8cd76eb5e1d0f8a12197501c (patch) | |
tree | 60557b1f3d5f331dae2a1d0b09ddb7d372821e20 /x11/XFree86 | |
parent | Upgrade to patchlevel 20. (diff) |
Move the physical copy of Wraphelp.c to after link-farm creation.
This fixes the build for CDROM owners.
Reviewed by: jmz
Diffstat (limited to 'x11/XFree86')
-rw-r--r-- | x11/XFree86/scripts/configure | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/x11/XFree86/scripts/configure b/x11/XFree86/scripts/configure index de92d9f9caba..5379793cdc59 100644 --- a/x11/XFree86/scripts/configure +++ b/x11/XFree86/scripts/configure @@ -121,14 +121,15 @@ yesno "Do you want to enable XDM-AUTHORIZATION-1 support? [YES] " if [ $answ = YES ]; then WH=$WRKDIR/xc/lib/Xdmcp/Wraphelp.c + cpwh=NO if [ -f $WH ] ; then echo "==> $WH found in source distribution." elif [ -f $X11FIXES/Wraphelp.c ] ; then echo "==> Wraphelp.c found in fix directory, copying to source tree." - cp $X11FIXES/Wraphelp.c $WH + cpwh=$X11FIXES/Wraphelp.c elif [ -f $FILESDIR/Wraphelp.c ] ; then echo "==> Wraphelp.c found in files directory, copying to source tree." - cp $FILESDIR/Wraphelp.c $WH + cpwh=$FILESDIR/Wraphelp.c else echo "==> Wraphelp.c not found, DES support NOT enabled." answ=NO @@ -222,6 +223,10 @@ else configure fi +if [ $cpwh != NO ]; then + cp $cpwh $WH +fi + echo -n "==> applying XC patches" ok=0 for i in 01 02 03 04 05 06 07 08 09 10 11 12; do |