diff options
author | Roy Li <rongqing.li@windriver.com> | 2014-07-08 13:20:47 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2014-07-20 23:57:27 -0400 |
commit | be2a2437005087b3f8d43a09ddc69991ed81e110 (patch) | |
tree | d5ebb9df219228d8b8f8b446deab6a89c9f267a5 /meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/unnecessary-to-check-libpcap.patch | |
parent | fb70d449341acebebd160dd4c2827c2b7cf46ea3 (diff) | |
download | meta-openembedded-be2a2437005087b3f8d43a09ddc69991ed81e110.tar.gz |
Uprev tcpdump to 4.5.1
1. update the patch tcpdump_configure_no_-O2.patch
2. do not check libdlpi dependence on cross-compile, or else it will
cause do_qa_configure to fail.
3. do not check libpcap dependence, since the libpcap has been added
into DEPENDS, or else it will cause do_qa_configure to fail
4. make the check of getaddrinfo work on cross-compile
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-4.5.1/unnecessary-to-check-libpcap.patch')
-rw-r--r-- | meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/unnecessary-to-check-libpcap.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/unnecessary-to-check-libpcap.patch b/meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/unnecessary-to-check-libpcap.patch new file mode 100644 index 0000000000..d7a3ac23b1 --- /dev/null +++ b/meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/unnecessary-to-check-libpcap.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | unnecessary to check libpcap | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | since the check of libpcap did not consider the cross-compile, lead to the | ||
6 | below error: | ||
7 | This autoconf log indicates errors, it looked at host include and/or | ||
8 | library paths while determining system capabilities. | ||
9 | |||
10 | In fact, the libpcap has been added into the tcpdump's DEPENDS, not need to | ||
11 | check if libpcap existed. | ||
12 | |||
13 | Signed-off-by: Roy Li <rongqing.li@windriver.com> | ||
14 | --- | ||
15 | configure.in | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/configure.in b/configure.in | ||
19 | index 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 | -- | ||
32 | 1.7.9.5 | ||
33 | |||