diff options
author | markm <markm@FreeBSD.org> | 1995-11-23 22:28:52 +0800 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1995-11-23 22:28:52 +0800 |
commit | be6848beca1d1d480290dd196c64747ab84437be (patch) | |
tree | 04e1cc696a7a2b0787dfd0047f0f85d4fea59c88 /x11/XFree86-4-clients | |
parent | 316947eb9abd0f4c110a6b0878eda96f0f97a69d (diff) | |
download | freebsd-ports-gnome-be6848beca1d1d480290dd196c64747ab84437be.tar.gz freebsd-ports-gnome-be6848beca1d1d480290dd196c64747ab84437be.tar.zst freebsd-ports-gnome-be6848beca1d1d480290dd196c64747ab84437be.zip |
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-4-clients')
-rw-r--r-- | x11/XFree86-4-clients/scripts/configure | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/x11/XFree86-4-clients/scripts/configure b/x11/XFree86-4-clients/scripts/configure index de92d9f9caba..5379793cdc59 100644 --- a/x11/XFree86-4-clients/scripts/configure +++ b/x11/XFree86-4-clients/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 |