mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 09:32:14 +02:00
This patch is to upgrade libpcap to 1.2.0. The values of the macro definitions are duplicated with the new code, so change them into other values. (From OE-Core rev: 2a76f0731f5e2ad4b941197bdf59c66d52ec9131) Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
535 B
BlitzBasic
21 lines
535 B
BlitzBasic
require libpcap.inc
|
|
|
|
PR = "${INC_PR}.0"
|
|
|
|
SRC_URI += "file://aclocal.patch \
|
|
file://ieee80215-arphrd.patch"
|
|
|
|
SRC_URI[md5sum] = "dfb8aa690b7a29821bfa183025436569"
|
|
SRC_URI[sha256sum] = "702ac51cfaa5c17d6b92771b22835d58eda4dc9e1f596c80a0b031e4c45c07d6"
|
|
|
|
#
|
|
# make install doesn't cover the shared lib
|
|
# make install-shared is just broken (no symlinks)
|
|
#
|
|
do_install_prepend () {
|
|
install -d ${D}${libdir}
|
|
install -d ${D}${bindir}
|
|
oe_runmake install-shared DESTDIR=${D}
|
|
oe_libinstall -a -so libpcap ${D}${libdir}
|
|
}
|