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/0001-minimal-IEEE802.15.4-allowed.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/0001-minimal-IEEE802.15.4-allowed.patch')
-rw-r--r-- | meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/0001-minimal-IEEE802.15.4-allowed.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/0001-minimal-IEEE802.15.4-allowed.patch b/meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/0001-minimal-IEEE802.15.4-allowed.patch new file mode 100644 index 0000000000..9d3d60d4d7 --- /dev/null +++ b/meta-networking/recipes-support/tcpdump/tcpdump-4.5.1/0001-minimal-IEEE802.15.4-allowed.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | From: Sergey Lapin <slapin@slind.org> | ||
2 | Date: Wed, 28 Jan 2009 16:34:15 +0300 | ||
3 | Subject: [PATCH] minimal IEEE802.15.4 allowed | ||
4 | |||
5 | --- | ||
6 | tcpdump.c | 3 +++ | ||
7 | 1 files changed, 3 insertions(+), 0 deletions(-) | ||
8 | |||
9 | diff --git a/tcpdump.c b/tcpdump.c | ||
10 | index 06683af..fbc944c 100644 | ||
11 | --- a/tcpdump.c | ||
12 | +++ b/tcpdump.c | ||
13 | @@ -282,6 +282,9 @@ static struct printer printers[] = { | ||
14 | #ifdef DLT_MFR | ||
15 | { mfr_if_print, DLT_MFR }, | ||
16 | #endif | ||
17 | +#ifdef DLT_IEEE802_15_4 | ||
18 | + { raw_if_print, DLT_IEEE802_15_4 }, | ||
19 | +#endif | ||
20 | #if defined(DLT_BLUETOOTH_HCI_H4_WITH_PHDR) && defined(HAVE_PCAP_BLUETOOTH_H) | ||
21 | { bt_if_print, DLT_BLUETOOTH_HCI_H4_WITH_PHDR}, | ||
22 | #endif | ||