[dpdk-dev] [PATCH 2/3] examples/ip_pipeline: disable build when no epoll
Bruce Richardson
bruce.richardson at intel.com
Mon Feb 25 16:23:03 CET 2019
The ip_pipeline example requires the epoll.h header from linux, so
disable building the example if the header cannot be found.
CC: stable at dpdk.org
Fixes: 4bbf8e30aa5e ("examples/ip_pipeline: add CLI interface")
Signed-off-by: Bruce Richardson <bruce.richardson at intel.com>
---
examples/ip_pipeline/meson.build | 1 +
1 file changed, 1 insertion(+)
diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build
index 5e5fe6479..664223c97 100644
--- a/examples/ip_pipeline/meson.build
+++ b/examples/ip_pipeline/meson.build
@@ -6,6 +6,7 @@
# To build this example as a standalone application with an already-installed
# DPDK instance, use 'make'
+build = cc.has_header('sys/epoll.h')
deps += ['pipeline', 'bus_pci']
allow_experimental_apis = true
sources = files(
--
2.20.1
More information about the dev
mailing list