diff options
author | xtraeme <xtraeme> | 2004-05-08 00:32:13 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2004-05-08 00:32:13 +0000 |
commit | 0eb42053c70505f27868bc60d0dd24162edc36b3 (patch) | |
tree | 387db88f067df440762dff3a4fa93ae98cfe3992 /x11 | |
parent | ee96c3d5322a2e0ce77bc4102116c66bbf8c76a6 (diff) | |
download | pkgsrc-0eb42053c70505f27868bc60d0dd24162edc36b3.tar.gz |
Forgot to enable IPv6 if USE_INET6 = [Yy][Ee][Ss].
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gdm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11/gdm/Makefile b/x11/gdm/Makefile index 81f62a848a2..5a9ac0f2884 100644 --- a/x11/gdm/Makefile +++ b/x11/gdm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.63 2004/05/08 00:27:16 xtraeme Exp $ +# $NetBSD: Makefile,v 1.64 2004/05/08 00:32:13 xtraeme Exp $ # DISTNAME= gdm-2.6.0.2 @@ -70,6 +70,8 @@ SUBST_SED.desktop+= -e 's|@GDMGRP@|${GDMGRP}|g' .include "../../mk/bsd.prefs.mk" +BUILD_DEFS+= USE_INET6 + .if ${OPSYS} == "SunOS" CFLAGS+= -DSunOS GDMOWN= daemon @@ -79,6 +81,10 @@ GDMOWN= daemon GDMGRP= daemon .endif +.if !empty(USE_INET6:M[Yy][Ee][Ss]) +CONFIGURE_ARGS+= --enable-ipv6 +.endif + .if ${OPSYS} == "NetBSD" CONFIGURE_ARGS+= X_SERVER_ARGS="vt05" .endif |