diff options
author | jlam <jlam@pkgsrc.org> | 2005-09-06 03:26:14 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-09-06 03:26:14 +0000 |
commit | 57fabbbd45dc8f93d0fee3f56fdadba4d33e0855 (patch) | |
tree | de74d828ecf3e92ef4f00c534659c8e122d6739e /net | |
parent | f3b284f7c91362f5142774ea5bc818272ed0cbf7 (diff) | |
download | pkgsrc-57fabbbd45dc8f93d0fee3f56fdadba4d33e0855.tar.gz |
Enable IPv6 for all platforms that have /usr/include/netinet/ip6.h,
not just on Solaris, Linux, and NetBSD. Bump the PKGREVISION to 3.
Diffstat (limited to 'net')
-rw-r--r-- | net/libpcap/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/net/libpcap/Makefile b/net/libpcap/Makefile index 9283d359d7a..6c7ac429398 100644 --- a/net/libpcap/Makefile +++ b/net/libpcap/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.29 2005/08/13 07:04:59 adrianp Exp $ +# $NetBSD: Makefile,v 1.30 2005/09/06 03:26:14 jlam Exp $ DISTNAME= libpcap-0.9.3 -PKGREVISION= 2 +PKGREVISION= 3 SVR4_PKGNAME= lpcap CATEGORIES= net MASTER_SITES= http://www.tcpdump.org/release/ @@ -20,10 +20,8 @@ USE_LIBTOOL= yes .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "SunOS" || ${OPSYS} == "Linux" || ${OPSYS} == "NetBSD" -. if exists(/usr/include/netinet/ip6.h) +.if exists(/usr/include/netinet/ip6.h) CONFIGURE_ARGS+= --enable-ipv6 -. endif .endif post-install: |