summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/libpcap/libpcap_1.6.1.bb
diff options
context:
space:
mode:
authorCristian Iorga <cristian.iorga@intel.com>2014-08-29 16:10:41 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-31 23:40:48 +0100
commit243837b39da90fcda9444af4675df35fc3e2349d (patch)
treeb6a675374d6325166e9ea1777a12bf3eb7e6e5c1 /meta/recipes-connectivity/libpcap/libpcap_1.6.1.bb
parentb31b04d50cd72d7846694d59d434ba68b698913a (diff)
downloadpoky-243837b39da90fcda9444af4675df35fc3e2349d.tar.gz
libpcap: upgrade to 1.6.1
- Still BSD licensed, some changes into pcap triggered a checksum change; - ieee80215-arphrd.patch removed, obsolete. - switched to ${BP} variable; Changelog from previous version: Saturday Jul. 19, 2014 mcr@sandelman.ca Summary for 1.6.1 libpcap release some fixes for the any device changes for how --enable-XXX works Wednesday Jul. 2, 2014 mcr@sandelman.ca Summary for 1.6.0 libpcap release Don't support D-Bus sniffing on OS X fixes for byte order issues with NFLOG captures Handle using cooked mode for DLT_NETLINK in activate_new(). on platforms where you can not capture on down interfaces, do not list them but: do list interfaces which are down, if you can capture on them! (From OE-Core rev: ff962963de4dea9143f11ded480d0cca79a66d99) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/libpcap/libpcap_1.6.1.bb')
-rw-r--r--meta/recipes-connectivity/libpcap/libpcap_1.6.1.bb22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/libpcap/libpcap_1.6.1.bb b/meta/recipes-connectivity/libpcap/libpcap_1.6.1.bb
new file mode 100644
index 0000000000..f570ebba95
--- /dev/null
+++ b/meta/recipes-connectivity/libpcap/libpcap_1.6.1.bb
@@ -0,0 +1,22 @@
1require libpcap.inc
2
3SRC_URI += "file://aclocal.patch"
4SRC_URI[md5sum] = "5eb05edf6b6c6e63d536d1c9fbfb2f7c"
5SRC_URI[sha256sum] = "116cbb3ac9e96d5dd7b39638a2f894a67fa3dcf06d794e6dae2b9a942ad13476"
6
7#
8# make install doesn't cover the shared lib
9# make install-shared is just broken (no symlinks)
10#
11
12do_configure_prepend () {
13 #remove hardcoded references to /usr/include
14 sed 's|\([ "^'\''I]\+\)/usr/include/|\1${STAGING_INCDIR}/|g' -i ${S}/configure.in
15}
16
17do_install_prepend () {
18 install -d ${D}${libdir}
19 install -d ${D}${bindir}
20 oe_runmake install-shared DESTDIR=${D}
21 oe_libinstall -a -so libpcap ${D}${libdir}
22}