b8fe951179
The following vulnerabilities have been fixed. * [1]wnpa-sec-2014-01 The NFS dissector could crash. Discovered by Moshe Kaplan. ([2]Bug 9672) Versions affected: 1.10.0 to 1.10.5, 1.8.0 to 1.8.12 [3]CVE-2014-2281 * [4]wnpa-sec-2014-02 The M3UA dissector could crash. Discovered by Laurent Butti. ([5]Bug 9699) Versions affected: 1.10.0 to 1.10.5 [6]CVE-2014-2282 * [7]wnpa-sec-2014-03 The RLC dissector could crash. ([8]Bug 9730) Versions affected: 1.10.0 to 1.10.5, 1.8.0 to 1.8.12 [9]CVE-2014-2283 * [10]wnpa-sec-2014-04 The MPEG file parser could overflow a buffer. Discovered by Wesley Neelen. ([11]Bug 9843) Versions affected: 1.10.0 to 1.10.5, 1.8.0 to 1.8.12 [12]CVE-2014-2299 Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
970 B
Makefile
24 lines
970 B
Makefile
################################################################################
|
|
#
|
|
# wireshark
|
|
#
|
|
################################################################################
|
|
|
|
WIRESHARK_VERSION = 1.10.6
|
|
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_AUTORECONF = YES
|
|
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_OPT = --disable-wireshark --without-krb5 --disable-usr-local \
|
|
--enable-static=no --with-gnutls=no --with-libsmi=no \
|
|
--includedir=$(STAGING_DIR)/usr/include
|
|
|
|
$(eval $(autotools-package))
|