]> git.droids-corp.org - dpdk.git/blobdiff - examples/ip_pipeline/meson.build
telemetry: fix missing header include
[dpdk.git] / examples / ip_pipeline / meson.build
index a9f2ea447a825270601cba7143f93da892f173be..945e28b58b99b4f7f4b9b2a78adc1cb27d5caf6f 100644 (file)
@@ -6,6 +6,11 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+build = cc.has_header('sys/epoll.h')
+if not build
+       subdir_done()
+endif
+
 deps += ['pipeline', 'bus_pci']
 allow_experimental_apis = true
 sources = files(
@@ -21,5 +26,6 @@ sources = files(
        'swq.c',
        'tap.c',
        'thread.c',
-       'tmgr.c'
+       'tmgr.c',
+       'cryptodev.c'
 )