summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/tcpdump/tcpdump/unnecessary-to-check-libpcap.patch
diff options
context:
space:
mode:
authorRoy Li <rongqing.li@windriver.com>2015-04-23 16:08:53 +0800
committerJoe MacDonald <joe_macdonald@mentor.com>2015-05-13 09:51:27 -0400
commit53d55216c8c721d3b66ec8f968737bf081def870 (patch)
treef0e15b51e38306eb3677e49e8d5350f8a20e73a3 /meta-networking/recipes-support/tcpdump/tcpdump/unnecessary-to-check-libpcap.patch
parent031e1027a652da2f6a591c6c80d5b6673101492b (diff)
downloadmeta-openembedded-53d55216c8c721d3b66ec8f968737bf081def870.tar.gz
tcpdump: upgrade to 4.7.4
Remove two unneeded patches, configure.patch and tcpdump-cross-getaddrinfo.patch Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-support/tcpdump/tcpdump/unnecessary-to-check-libpcap.patch')
-rw-r--r--meta-networking/recipes-support/tcpdump/tcpdump/unnecessary-to-check-libpcap.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/tcpdump/tcpdump/unnecessary-to-check-libpcap.patch b/meta-networking/recipes-support/tcpdump/tcpdump/unnecessary-to-check-libpcap.patch
new file mode 100644
index 000000000..d7a3ac23b
--- /dev/null
+++ b/meta-networking/recipes-support/tcpdump/tcpdump/unnecessary-to-check-libpcap.patch
@@ -0,0 +1,33 @@
1unnecessary to check libpcap
2
3Upstream-Status: Pending
4
5since the check of libpcap did not consider the cross-compile, lead to the
6below error:
7 This autoconf log indicates errors, it looked at host include and/or
8 library paths while determining system capabilities.
9
10In fact, the libpcap has been added into the tcpdump's DEPENDS, not need to
11check if libpcap existed.
12
13Signed-off-by: Roy Li <rongqing.li@windriver.com>
14---
15 configure.in | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/configure.in b/configure.in
19index 06fade1..9125de7 100644
20--- a/configure.in
21+++ b/configure.in
22@@ -567,7 +567,7 @@ AC_SEARCH_LIBS(getrpcbynumber, nsl,
23 dnl AC_CHECK_LIB(z, uncompress)
24 dnl AC_CHECK_HEADERS(zlib.h)
25
26-AC_LBL_LIBPCAP(V_PCAPDEP, V_INCLS)
27+#AC_LBL_LIBPCAP(V_PCAPDEP, V_INCLS)
28
29 #
30 # Check for these after AC_LBL_LIBPCAP, so we link with the appropriate
31--
321.7.9.5
33