diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-12-15 02:58:35 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-12-15 02:58:35 +0000 |
commit | bfadd1fd9bbaae2c1ca8cce388b761ec21f033ff (patch) | |
tree | dacad6b93cbee3adc963261a1b0f0dd784fbf429 /devel/imake-4 | |
parent | d3a6f89beed8813f7e33a22c5dce3d05bedbf983 (diff) |
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
Notes
Notes:
svn path=/head/; revision=51544
Diffstat (limited to 'devel/imake-4')
-rw-r--r-- | devel/imake-4/Makefile | 1 | ||||
-rw-r--r-- | devel/imake-4/scripts/configure | 8 |
2 files changed, 4 insertions, 5 deletions
diff --git a/devel/imake-4/Makefile b/devel/imake-4/Makefile index 15b53d51b6e2..83aaaca54602 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 a7d082d5b3f1..9dd35d5a285c 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 |