Commit 3c7d6ae5 authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- add option to turn on SMB dump routines

- honour BR2_INET_IPV6
parent 777a28a8
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -7,6 +7,13 @@ config BR2_PACKAGE_TCPDUMP

	  http://www.tcpdump.org/

config BR2_PACKAGE_TCPDUMP_SMB
	bool "smb dump support"
	default n
	depends on BR2_PACKAGE_TCPDUMP
	help
	  enable possibly-buggy SMB printer

config BR2_PACKAGE_DHCPDUMP
	bool "dhcpdump"
	default n
+8 −1
Original line number Diff line number Diff line
@@ -12,6 +12,12 @@ TCPDUMP_SITE:=http://www.tcpdump.org/release
TCPDUMP_SOURCE:=tcpdump-$(TCPDUMP_VERSION).tar.gz
TCPDUMP_CAT:=$(ZCAT)

ifneq ($(BR2_PACKAGE_TCPDUMP_SMB),y)
TCPDUMP_ENABLE_SMB:=--disable-smb
else
TCPDUMP_ENABLE_SMB:=--enable-smb
endif

$(DL_DIR)/$(TCPDUMP_SOURCE):
	 $(WGET) -P $(DL_DIR) $(TCPDUMP_SITE)/$(TCPDUMP_SOURCE)

@@ -37,7 +43,8 @@ $(TCPDUMP_DIR)/.configured: $(TCPDUMP_DIR)/.unpacked
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--without-crypto \
		--disable-smb \
		$(TCPDUMP_ENABLE_SMB) \
		$(DISABLE_IPV6) \
	)
	$(SED) '/HAVE_PCAP_DEBUG/d' $(TCPDUMP_DIR)/config.h
	touch $@