From: Randy MacLeod <randy.macleod@windriver.com>
To: Joe Slater <jslater@windriver.com>,
<openembedded-devel@lists.openembedded.org>,
"Hatle, Mark" <mark.hatle@windriver.com>
Subject: Re: [meta-networking][PATCH 1/1] tcpreplay: improve search for libpcap
Date: Fri, 12 Dec 2014 11:33:29 -0500 [thread overview]
Message-ID: <548B18D9.3060600@windriver.com> (raw)
In-Reply-To: <1418251028-27954-1-git-send-email-jslater@windriver.com>
build for cav-octeon3
merged:
To ssh://git.wrs.com/git/layers/meta-networking
7f702c5..75228f4 wr-7.0-20141118 -> wr-7.0-20141118
I'm away for a while so please mind the build Mark.
../Randy
On 2014-12-10 05:37 PM, Joe Slater wrote:
> Add a test to find libpcap if testdir/.. is a sysroot.
>
> Upstream-Status: Pending
>
> Signed-off-by: Joe Slater <jslater@windriver.com>
> ---
> ...cpreplay-3.4.4-improve-search-for-libpcap.patch | 33 ++++++++++++++++++++
> .../recipes-support/tcpreplay/tcpreplay_3.4.4.bb | 1 +
> 2 files changed, 34 insertions(+)
> create mode 100644 meta-networking/recipes-support/tcpreplay/files/tcpreplay-3.4.4-improve-search-for-libpcap.patch
>
> diff --git a/meta-networking/recipes-support/tcpreplay/files/tcpreplay-3.4.4-improve-search-for-libpcap.patch b/meta-networking/recipes-support/tcpreplay/files/tcpreplay-3.4.4-improve-search-for-libpcap.patch
> new file mode 100644
> index 0000000..50f024c
> --- /dev/null
> +++ b/meta-networking/recipes-support/tcpreplay/files/tcpreplay-3.4.4-improve-search-for-libpcap.patch
> @@ -0,0 +1,33 @@
> +tcpreplay: improve search for libpcap
> +
> +Add a test which will find libpcap if $testdir/.. is a sysroot.
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Joe Slater <joe.slater@windriver.com>
> +
> +
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -350,14 +350,20 @@ for testdir in $trypcapdir /usr/local /o
> + if test -f "${testdir}/include/pcap.h" -a $foundpcap = no ; then
> + LPCAPINC="${testdir}/include/pcap.h"
> + LPCAPINCDIR="${testdir}/include"
> ++ # If testdir/.. is a sysroot, then sDir should point to where the libraries are.
> ++ sDir=$(readlink -m ${testdir}/../${libdir})
> + if test $dynamic_link = yes; then
> +- if test -f "${testdir}/lib64/libpcap${shrext_cmds}" ; then
> ++ if test -f "${sDir}/libpcap${shrext_cmds}" ; then
> ++ LPCAPLIB="-L${sDir} -lpcap"
> ++ elif test -f "${testdir}/lib64/libpcap${shrext_cmds}" ; then
> + LPCAPLIB="-L${testdir}/lib64 -lpcap"
> + elif test -f "${testdir}/lib/libpcap${shrext_cmds}" ; then
> + LPCAPLIB="-L${testdir}/lib -lpcap"
> + else
> + AC_ERROR([Unable to find libpcap in ${testdir}])
> + fi
> ++ elif test -f "${sDir}/libpcap.${libext}" ; then
> ++ LPCAPLIB="${sDir}/libpcap.${libext}"
> + elif test -f "${testdir}/lib64/libpcap.${libext}" ; then
> + LPCAPLIB="${testdir}/lib64/libpcap.${libext}"
> + elif test -f "${testdir}/lib/libpcap.${libext}" ; then
> diff --git a/meta-networking/recipes-support/tcpreplay/tcpreplay_3.4.4.bb b/meta-networking/recipes-support/tcpreplay/tcpreplay_3.4.4.bb
> index 4bce270..9ecb695 100644
> --- a/meta-networking/recipes-support/tcpreplay/tcpreplay_3.4.4.bb
> +++ b/meta-networking/recipes-support/tcpreplay/tcpreplay_3.4.4.bb
> @@ -10,6 +10,7 @@ SRC_URI = "http://prdownloads.sourceforge.net/tcpreplay/${PV}/tcpreplay-${PV}.ta
> file://tcpreplay-3.4.4-cross-compile.patch \
> file://tcpreplay-3.4.4-no-bfp-support.patch \
> file://tcpreplay-3.4.4-fix-unable-to-link-libpcap-issue.patch \
> + file://tcpreplay-3.4.4-improve-search-for-libpcap.patch \
> "
> SRC_URI[md5sum] = "22725feb9b2590809f9350308ec65180"
> SRC_URI[sha256sum] = "7a809c58ddec86407fd6e5597ac883d7874a19bea81d716bb2b1c6e3b0e7b58f"
>
--
# Randy MacLeod. SMTS, Linux, Wind River
Direct: 613.963.1350
prev parent reply other threads:[~2014-12-12 16:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-10 22:37 [meta-networking][PATCH 1/1] tcpreplay: improve search for libpcap Joe Slater
2014-12-12 16:33 ` Randy MacLeod [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=548B18D9.3060600@windriver.com \
--to=randy.macleod@windriver.com \
--cc=jslater@windriver.com \
--cc=mark.hatle@windriver.com \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox