Fixes: CVE-2015-3808 CVE-2015-3809 - The LBMR dissector could go into an infinite loop. CVE-2015-3811 - The WCP dissector could crash while decompressing data. CVE-2015-3812 - The X11 dissector could leak memory. CVE-2015-3813 - The packet reassembly code could leak memory. CVE-2015-3814 - The IEEE 802.11 dissector could go into an infinite loop. CVE-2015-3815 - The Android Logcat file parser could crash. Patch upstream so drop and disable autoreconf. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
29 lines
948 B
Makefile
29 lines
948 B
Makefile
################################################################################
|
|
#
|
|
# wireshark
|
|
#
|
|
################################################################################
|
|
|
|
WIRESHARK_VERSION = 1.12.5
|
|
WIRESHARK_SOURCE = wireshark-$(WIRESHARK_VERSION).tar.bz2
|
|
WIRESHARK_SITE = http://www.wireshark.org/download/src/all-versions
|
|
WIRESHARK_LICENSE = wireshark license
|
|
WIRESHARK_LICENSE_FILES = COPYING
|
|
WIRESHARK_DEPENDENCIES = libpcap libgcrypt libglib2
|
|
WIRESHARK_CONF_ENV = \
|
|
LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config \
|
|
ac_cv_path_PCAP_CONFIG=$(STAGING_DIR)/usr/bin/pcap-config
|
|
|
|
# wireshark adds -I$includedir to CFLAGS, causing host/target headers mixup.
|
|
# Work around it by pointing includedir at staging
|
|
WIRESHARK_CONF_OPTS = \
|
|
--disable-wireshark \
|
|
--without-krb5 \
|
|
--disable-usr-local \
|
|
--enable-static=no \
|
|
--with-gnutls=no \
|
|
--with-libsmi=no \
|
|
--includedir=$(STAGING_DIR)/usr/include
|
|
|
|
$(eval $(autotools-package))
|