diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-08-01 20:09:09 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-08-01 20:09:09 +0200 |
commit | 9d8ce74086152a6431f92e95533a31a0cd6b2d23 (patch) | |
tree | 114dea73035cef5daa129fec4da31febf292dd66 /package/libpcap/Makefile | |
parent | d797df53c90b50b326fb0f39a6928e207e1cbe1d (diff) | |
parent | 4fa46b6a63a479a7a216b519c329dbfe53b0ca39 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/libpcap/Makefile')
-rw-r--r-- | package/libpcap/Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/package/libpcap/Makefile b/package/libpcap/Makefile index b9ef5c807..f51a3058f 100644 --- a/package/libpcap/Makefile +++ b/package/libpcap/Makefile @@ -4,14 +4,17 @@ include $(TOPDIR)/rules.mk PKG_NAME:= libpcap -PKG_VERSION:= 1.0.0 +PKG_VERSION:= 1.1.1 PKG_RELEASE:= 1 -PKG_MD5SUM:= 9ad1358c5dec48456405eac197a46d3d +PKG_MD5SUM:= 1bca27d206970badae248cfa471bbb47 PKG_DESCR:= a low-level packet capture library PKG_SECTION:= libs -PKG_URL:= http://www.tcpdump.org +PKG_URL:= http://www.tcpdump.org/ PKG_SITES:= http://www.tcpdump.org/release/ +PKG_FLAVOURS:= WITH_IPV6 +PKGFD_WITH_IPV6:= enable IPv6 support + include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,LIBPCAP,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) @@ -23,6 +26,12 @@ CONFIGURE_ARGS+= --disable-yydebug \ TCFLAGS+= ${TCPPFLAGS} INSTALL_TARGET= install install-shared +ifneq (${ADK_PACKAGE_LIBPCAP_WITH_IPV6},) +CONFIGURE_ARGS+= --enable-ipv6 +else +CONFIGURE_ARGS+= --disable-ipv6 +endif + post-install: ${INSTALL_DIR} ${IDIR_LIBPCAP}/usr/lib/ ${CP} ${WRKINST}/usr/lib/libpcap.so* ${IDIR_LIBPCAP}/usr/lib/ |