diff options
author | schmonz <schmonz@pkgsrc.org> | 2002-06-02 00:57:38 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2002-06-02 00:57:38 +0000 |
commit | 9ea55788f69846a8016386c11c60aa13a47ac765 (patch) | |
tree | 11e5141d96de81d21dc33dd5dfc0390d9c68b028 /net/lukemftp | |
parent | 63ce60909f67c3490876ef1dabff5b3bae8f4dde (diff) | |
download | pkgsrc-9ea55788f69846a8016386c11c60aa13a47ac765.tar.gz |
--disable-ipv6 on Darwin. This now builds as-is on Darwin, potentially
simplifying the pkgsrc bootstrap process on that platform.
Diffstat (limited to 'net/lukemftp')
-rw-r--r-- | net/lukemftp/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/lukemftp/Makefile b/net/lukemftp/Makefile index 8b41e069034..0b300d4a36a 100644 --- a/net/lukemftp/Makefile +++ b/net/lukemftp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2001/10/18 15:20:30 veego Exp $ +# $NetBSD: Makefile,v 1.7 2002/06/02 00:57:38 schmonz Exp $ # DISTNAME= lukemftp-1.5 @@ -26,6 +26,8 @@ CONFIGURE_ARGS+= --with-socks5 .if ${OPSYS} == "SunOS" MAKE_ENV+= CPPFLAGS="" +.elseif ${OPSYS} == "Darwin" +CONFIGURE_ARGS+= --disable-ipv6 .endif .include "../../mk/bsd.pkg.mk" |