- add option to turn on SMB dump routines

- honour BR2_INET_IPV6
This commit is contained in:
Bernhard Reutner-Fischer 2007-09-01 19:42:11 +00:00
parent 777a28a85d
commit 3c7d6ae588
2 changed files with 15 additions and 1 deletions

View File

@ -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

View File

@ -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 $@