mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
tcpdump: uprev it to 4.6.1
1. uprev to 4.6.1 2. remove three obsolete patches 3. use PACKAGECONFIG, and the default value is ipv6 openssl Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
-22
@@ -1,22 +0,0 @@
|
|||||||
From: Sergey Lapin <slapin@slind.org>
|
|
||||||
Date: Wed, 28 Jan 2009 16:34:15 +0300
|
|
||||||
Subject: [PATCH] minimal IEEE802.15.4 allowed
|
|
||||||
|
|
||||||
---
|
|
||||||
tcpdump.c | 3 +++
|
|
||||||
1 files changed, 3 insertions(+), 0 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/tcpdump.c b/tcpdump.c
|
|
||||||
index 06683af..fbc944c 100644
|
|
||||||
--- a/tcpdump.c
|
|
||||||
+++ b/tcpdump.c
|
|
||||||
@@ -282,6 +282,9 @@ static struct printer printers[] = {
|
|
||||||
#ifdef DLT_MFR
|
|
||||||
{ mfr_if_print, DLT_MFR },
|
|
||||||
#endif
|
|
||||||
+#ifdef DLT_IEEE802_15_4
|
|
||||||
+ { raw_if_print, DLT_IEEE802_15_4 },
|
|
||||||
+#endif
|
|
||||||
#if defined(DLT_BLUETOOTH_HCI_H4_WITH_PHDR) && defined(HAVE_PCAP_BLUETOOTH_H)
|
|
||||||
{ bt_if_print, DLT_BLUETOOTH_HCI_H4_WITH_PHDR},
|
|
||||||
#endif
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
---
|
|
||||||
configure.in | 12 ++++++++----
|
|
||||||
1 files changed, 8 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/configure.in b/configure.in
|
|
||||||
index eb3e5e8..11257c9 100644
|
|
||||||
--- a/configure.in
|
|
||||||
+++ b/configure.in
|
|
||||||
@@ -181,8 +181,9 @@ yes) AC_MSG_RESULT(yes)
|
|
||||||
ipv6=no
|
|
||||||
;;
|
|
||||||
esac ],
|
|
||||||
-
|
|
||||||
- AC_TRY_RUN([ /* AF_INET6 available check */
|
|
||||||
+[
|
|
||||||
+ if test x"$cross_compiling" != "xyes"; then
|
|
||||||
+ AC_TRY_RUN([ /* AF_INET6 avalable check */
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/socket.h>
|
|
||||||
main()
|
|
||||||
@@ -201,7 +202,10 @@ main()
|
|
||||||
ipv6=no],
|
|
||||||
[ AC_MSG_RESULT(no)
|
|
||||||
ipv6=no]
|
|
||||||
-))
|
|
||||||
+ )
|
|
||||||
+else
|
|
||||||
+ AC_MSG_FAILURE([Unable to check for ipv6 when crosscompiling, please specify.])
|
|
||||||
+fi])
|
|
||||||
|
|
||||||
ipv6type=unknown
|
|
||||||
ipv6lib=none
|
|
||||||
@@ -316,7 +320,7 @@ if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
-if test "$ipv6" = "yes"; then
|
|
||||||
+if test x"$cross_compiling" != "xyes" -a "$ipv6" = "yes"; then
|
|
||||||
#
|
|
||||||
# XXX - on Tru64 UNIX 5.1, there is no "getaddrinfo()"
|
|
||||||
# function in libc; there are "ngetaddrinfo()" and
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
---
|
|
||||||
configure | 4 ++--
|
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/configure b/configure
|
|
||||||
index 468a517..a890728 100755
|
|
||||||
--- a/configure
|
|
||||||
+++ b/configure
|
|
||||||
@@ -3036,13 +3036,13 @@ if test "$ac_test_CFLAGS" = set; then
|
|
||||||
CFLAGS=$ac_save_CFLAGS
|
|
||||||
elif test $ac_cv_prog_cc_g = yes; then
|
|
||||||
if test "$GCC" = yes; then
|
|
||||||
- CFLAGS="-g -O2"
|
|
||||||
+ CFLAGS="-g"
|
|
||||||
else
|
|
||||||
CFLAGS="-g"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
if test "$GCC" = yes; then
|
|
||||||
- CFLAGS="-O2"
|
|
||||||
+ CFLAGS=
|
|
||||||
else
|
|
||||||
CFLAGS=
|
|
||||||
fi
|
|
||||||
--
|
|
||||||
1.7.9.5
|
|
||||||
|
|
||||||
+6
-8
@@ -6,24 +6,22 @@ SECTION = "console/network"
|
|||||||
DEPENDS = "libpcap"
|
DEPENDS = "libpcap"
|
||||||
|
|
||||||
SRC_URI = " \
|
SRC_URI = " \
|
||||||
http://www.tcpdump.org/release/tcpdump-${PV}.tar.gz \
|
http://www.tcpdump.org/release/${BP}.tar.gz \
|
||||||
file://tcpdump_configure_no_-O2.patch \
|
|
||||||
file://0001-minimal-IEEE802.15.4-allowed.patch \
|
|
||||||
file://ipv6-cross.patch \
|
|
||||||
file://configure.patch \
|
file://configure.patch \
|
||||||
file://unnecessary-to-check-libpcap.patch \
|
file://unnecessary-to-check-libpcap.patch \
|
||||||
file://tcpdump-configure-dlpi.patch \
|
file://tcpdump-configure-dlpi.patch \
|
||||||
file://tcpdump-cross-getaddrinfo.patch \
|
file://tcpdump-cross-getaddrinfo.patch \
|
||||||
"
|
"
|
||||||
SRC_URI[md5sum] = "973a2513d0076e34aa9da7e15ed98e1b"
|
SRC_URI[md5sum] = "dab267ec30216a069747d10314079ec7"
|
||||||
SRC_URI[sha256sum] = "14ab39657128f3a650aed4cf455f76c7590601087b6101c253d698f6e73f0b96"
|
SRC_URI[sha256sum] = "4c88c2a9aeb4047074f344fc9b2b6577b219972d359e192f6d12ccf983a13fd7"
|
||||||
export LIBS=" -lpcap"
|
export LIBS=" -lpcap"
|
||||||
|
|
||||||
inherit autotools-brokensep
|
inherit autotools-brokensep
|
||||||
CACHED_CONFIGUREVARS = "ac_cv_linux_vers=${ac_cv_linux_vers=2}"
|
CACHED_CONFIGUREVARS = "ac_cv_linux_vers=${ac_cv_linux_vers=2}"
|
||||||
|
|
||||||
EXTRA_OECONF = "--without-crypto \
|
PACKAGECONFIG ??= "openssl ipv6"
|
||||||
${@base_contains('DISTRO_FEATURES', 'ipv6', '--enable-ipv6', '--disable-ipv6', d)}"
|
PACKAGECONFIG[openssl] = "--with-crypto=yes, --without-openssl --without-crypto, openssl"
|
||||||
|
PACKAGECONFIG[ipv6] = "--enable-ipv6, --disable-ipv6,"
|
||||||
|
|
||||||
EXTRA_AUTORECONF += " -I m4"
|
EXTRA_AUTORECONF += " -I m4"
|
||||||
|
|
||||||
Reference in New Issue
Block a user