diff options
author | dmcmahill <dmcmahill> | 2000-02-22 17:38:07 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2000-02-22 17:38:07 +0000 |
commit | 8eb6175c3fc7f6dbd36c3914a1d29cd6328989bf (patch) | |
tree | 430fad98d20a8dde83e03bee31748e9d2188d4d6 /net/irrd/Makefile | |
parent | 97b78a672186d055c29f34b1c4cb1f3322245632 (diff) | |
download | pkgsrc-8eb6175c3fc7f6dbd36c3914a1d29cd6328989bf.tar.gz |
If USE_INET6 is not defined, explicitly disable ipv6 in the
CONFIGURE_ARGS. This is needed because the pkg system passes,
for example, "--host=i386--netbsd" to 'configure'. However,
'configure' looks for strings like i386-*-netbsd1.4[A-Z] and
i386-*-netbsd1.3* to turn off ipv6.
Diffstat (limited to 'net/irrd/Makefile')
-rw-r--r-- | net/irrd/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/irrd/Makefile b/net/irrd/Makefile index e9a9e23e363..d7d8f3bc868 100644 --- a/net/irrd/Makefile +++ b/net/irrd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/10/28 19:50:18 kim Exp $ +# $NetBSD: Makefile,v 1.2 2000/02/22 17:38:07 dmcmahill Exp $ # DISTNAME= irrd-1.5-beta-Sept-24-1999 @@ -24,6 +24,10 @@ DEPENDS+= pgp-2.*:../../security/pgp2 .endif .endif +.ifndef USE_INET6 +CONFIGURE_ARGS+= --disable-ipv6 +.endif + WRKSRC= ${WRKDIR}/irrd-1.5 HAS_CONFIGURE= yes |