summaryrefslogtreecommitdiffstats
path: root/devel/imake-4
diff options
context:
space:
mode:
authorsf <sf@FreeBSD.org>2001-12-15 02:58:35 +0000
committersf <sf@FreeBSD.org>2001-12-15 02:58:35 +0000
commit2444b6a30829fd31ca8e968bd8fbff74fb504562 (patch)
treefef7276d5e7f071f73e335b76347fe6a2d9f3d20 /devel/imake-4
parent65a318ce4b076caca69efe99b3690b8284cbaf41 (diff)
downloadFreeBSD-ports-2444b6a30829fd31ca8e968bd8fbff74fb504562.zip
FreeBSD-ports-2444b6a30829fd31ca8e968bd8fbff74fb504562.tar.gz
Fix long-standing bug of this ports: support HasXdmAuth correctly.
Previously, devel/imake-4 disables XDM-AUTHORIZATION-1 support whether HasXdmAuth is set to YES or NO if you don't have Wraphelp.c in local ${DISTDIR}. devel/imake-4: rip off meaningless existent check for Wraphelp.c. x11/XFree86-4-libraries: imake-4 change affects libXdmcp.a. ++REVISION. x11/XFree86-4-clients: xdm and chooser depends on libXdmcp.a. ++REVISION. x11-servers/XFree86-{Nest,Print,Server,VFB}: add Wraphelp.c retrieval code. depends on libXdmcp.a. ++REVISION. Reported by: Alan Eldridge <alane@geeksrus.net> Reviewed by: maintainer
Diffstat (limited to 'devel/imake-4')
-rw-r--r--devel/imake-4/Makefile1
-rw-r--r--devel/imake-4/scripts/configure8
2 files changed, 4 insertions, 5 deletions
diff --git a/devel/imake-4/Makefile b/devel/imake-4/Makefile
index 15b53d51..83aaaca 100644
--- a/devel/imake-4/Makefile
+++ b/devel/imake-4/Makefile
@@ -7,6 +7,7 @@
PORTNAME= imake
PORTVERSION= 4.1.0
+PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_XFREE}
MASTER_SITE_SUBDIR= 4.1.0
diff --git a/devel/imake-4/scripts/configure b/devel/imake-4/scripts/configure
index a7d082d..9dd35d5 100644
--- a/devel/imake-4/scripts/configure
+++ b/devel/imake-4/scripts/configure
@@ -23,11 +23,9 @@ if [ $OSVERSION -ge 300000 -a X$HasSecureRPC != "X" ]; then
echo "#endif" >> $F
fi
if [ X$HasXdmAuth != "X" ]; then
- if [ -f $WRKDIR/xc/lib/Xdmcp/Wraphelp.c -o -f $DISTDIR/xc/Wraphelp.c ]; then
- echo "#ifndef HasXdmAuth" >> $F
- echo "#define HasXdmAuth $HasXdmAuth" >> $F
- echo "#endif" >> $F
- fi
+ echo "#ifndef HasXdmAuth" >> $F
+ echo "#define HasXdmAuth $HasXdmAuth" >> $F
+ echo "#endif" >> $F
fi
if [ $OSVERSION -ge 310000 -a X$HasPam != "X" ]; then
echo "#ifndef HasPam" >> $F
OpenPOWER on IntegriCloud