6029d1b81b
Fixes: CVE-2015-0261 - issues with IPv6 mobility printer. CVE-2015-2153 - issue with tcp printer. CVE-2015-2154 - issue with ethernet printer. CVE-2015-2155 - issue with force printer. CVE-2014-9140 fix is upstream so patch dropped. System libpcap upstream as well so dropped. CVE-2014-8767, CVE-2014-8768 and CVE-2014-8769 don't seem to be upstream so keep. And add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
996 B
Makefile
33 lines
996 B
Makefile
################################################################################
|
|
#
|
|
# tcpdump
|
|
#
|
|
################################################################################
|
|
|
|
TCPDUMP_VERSION = 4.7.3
|
|
TCPDUMP_SITE = http://www.tcpdump.org/release
|
|
TCPDUMP_LICENSE = BSD-3c
|
|
TCPDUMP_LICENSE_FILES = LICENSE
|
|
TCPDUMP_CONF_ENV = \
|
|
ac_cv_linux_vers=2 \
|
|
td_cv_buggygetaddrinfo=no \
|
|
PCAP_CONFIG=$(STAGING_DIR)/usr/bin/pcap-config
|
|
TCPDUMP_CONF_OPTS = \
|
|
--without-crypto \
|
|
--with-system-libpcap \
|
|
$(if $(BR2_PACKAGE_TCPDUMP_SMB),--enable-smb,--disable-smb)
|
|
TCPDUMP_DEPENDENCIES = zlib libpcap
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
TCPDUMP_CONF_OPTS += LIBS="$(shell $(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs)"
|
|
endif
|
|
|
|
# make install installs an unneeded extra copy of the tcpdump binary
|
|
define TCPDUMP_REMOVE_DUPLICATED_BINARY
|
|
rm -f $(TARGET_DIR)/usr/sbin/tcpdump.$(TCPDUMP_VERSION)
|
|
endef
|
|
|
|
TCPDUMP_POST_INSTALL_TARGET_HOOKS += TCPDUMP_REMOVE_DUPLICATED_BINARY
|
|
|
|
$(eval $(autotools-package))
|