summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity
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-12 17:05:30 +0000
commitbe5442f065da40b41d3cd60793341e22654f2681 (patch)
treed120e4455202e26c13d926be5f580ac9750d2ac1 /meta/recipes-connectivity
parent77d96b70f37b70dde65cf31f917c9f524fa7016a (diff)
downloadopenembedded-core-contrib-be5442f065da40b41d3cd60793341e22654f2681.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. Signed-off-by: Sean Anderson <sean.anderson@seco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-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"
# Explicitly disable dag support. We don't have recipe for it and if enabled here,
# configure script poisons the include dirs with /usr/local/include even when the
-# support hasn't been detected.
+# support hasn't been detected. Do the same thing for DPDK.
EXTRA_OECONF = " \
--with-pcap=linux \
--without-dag \
+ --without-dpdk \
"
EXTRA_AUTORECONF += "--exclude=aclocal"