power: rename constants
[dpdk.git] / examples / ip_pipeline / meson.build
index a9f2ea4..945e28b 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'
 )