From: Imre Kaloz Date: Wed, 9 Oct 2013 11:03:00 +0000 (+0000) Subject: [package/libs/libpcap]: IPv6 support should depend on if we've enabled it X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=fc78c8a31e9a7558e5c492b89d2928695c6817ee [package/libs/libpcap]: IPv6 support should depend on if we've enabled it Signed-off-by: Imre Kaloz SVN-Revision: 38349 --- diff --git a/package/libs/libpcap/Makefile b/package/libs/libpcap/Makefile index f1d2872254..24b07c932b 100644 --- a/package/libs/libpcap/Makefile +++ b/package/libs/libpcap/Makefile @@ -54,7 +54,6 @@ CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ --disable-yydebug \ - --enable-ipv6 \ --with-build-cc="$(HOSTCC)" \ --with-pcap=linux \ --without-septel \ @@ -62,6 +61,11 @@ CONFIGURE_ARGS += \ --without-libnl \ --disable-can +ifeq ($(CONFIG_IPV6),y) +CONFIGURE_ARGS += \ + --enable-ipv6 +endif + MAKE_FLAGS += \ CCOPT="$(TARGET_CFLAGS) -I$(BUILD_DIR)/linux/include"