summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Anderson <sean.anderson@seco.com>2022-02-10 15:49:19 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-24 11:12:39 +0000
commitd85d82e0637ef44c88f5ae00fc5dad1978eff08f (patch)
treed7097f538b0db29f6344959d2a2e0e5a882715c4
parent2dcbf103c75cc3af10e5f263ab0a2c9a68aca151 (diff)
downloadpoky-d85d82e0637ef44c88f5ae00fc5dad1978eff08f.tar.gz
libpcap: Disable DPDK explicitly
libpcap looks for DPDK in the same way it looks for DAG. This can poison the build even if it doesn't find anything. Explicitly disable dpdk. (From OE-Core rev: 61fe2321426af41cc36f3fdbdf9774edae398933) Signed-off-by: Sean Anderson <sean.anderson@seco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit be5442f065da40b41d3cd60793341e22654f2681) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb b/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb
index 9a8c46e0ef..dbe2fd8157 100644
--- a/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb
+++ b/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb
@@ -19,10 +19,11 @@ BINCONFIG = "${bindir}/pcap-config"
19 19
20# Explicitly disable dag support. We don't have recipe for it and if enabled here, 20# Explicitly disable dag support. We don't have recipe for it and if enabled here,
21# configure script poisons the include dirs with /usr/local/include even when the 21# configure script poisons the include dirs with /usr/local/include even when the
22# support hasn't been detected. 22# support hasn't been detected. Do the same thing for DPDK.
23EXTRA_OECONF = " \ 23EXTRA_OECONF = " \
24 --with-pcap=linux \ 24 --with-pcap=linux \
25 --without-dag \ 25 --without-dag \
26 --without-dpdk \
26 " 27 "
27EXTRA_AUTORECONF += "--exclude=aclocal" 28EXTRA_AUTORECONF += "--exclude=aclocal"
28 29