summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2012-02-07 03:28:36 +0000
committertaca <taca@pkgsrc.org>2012-02-07 03:28:36 +0000
commit18a87043c4eacda4d6d94710d5d1be999fcf59e8 (patch)
tree8c110011cf0f2c79caa1c768318ee8d4ae2d59f3 /net
parentdb8f8cabbdcd1adfd6d526431abd89697ee33dda (diff)
downloadpkgsrc-18a87043c4eacda4d6d94710d5d1be999fcf59e8.tar.gz
Disable use of IP Filter support explicitly on NetBSD.
This is a little backward-looking handling for build breaks on NetBSD current, newer IP Filter. libdnet's firewall support seems not used on NetBSD from 4.0_STABLE at least. So, this change thins back to before to fix build breaks.
Diffstat (limited to 'net')
-rw-r--r--net/libdnet/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/net/libdnet/Makefile b/net/libdnet/Makefile
index 6e6fbefad8c..4b95389a58a 100644
--- a/net/libdnet/Makefile
+++ b/net/libdnet/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2011/09/14 17:28:19 hans Exp $
+# $NetBSD: Makefile,v 1.20 2012/02/07 03:28:36 taca Exp $
#
DISTNAME= libdnet-1.12
@@ -36,6 +36,9 @@ CONFIGURE_ARGS+= --without-check
.endif
.include "../../mk/bsd.prefs.mk"
+.if ${OPSYS} == "NetBSD"
+CONFIGURE_ENV+= ac_cv_header_netinet_ip_fil_h=no
+.endif
.if ${OPSYS} == "SunOS"
CONFIGURE_ENV+= ac_cv_dnet_linux_pf_packet=no
.endif