X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fip_pipeline%2Fmeson.build;h=945e28b58b99b4f7f4b9b2a78adc1cb27d5caf6f;hb=38d232b9b804eebd458d758f2face173220ee2f8;hp=236624268853c9b3d11a1c3cc90b18bd04c847b9;hpb=d75c371e9b46565bab99e40f74973bda73e315e1;p=dpdk.git diff --git a/examples/ip_pipeline/meson.build b/examples/ip_pipeline/meson.build index 2366242688..945e28b58b 100644 --- a/examples/ip_pipeline/meson.build +++ b/examples/ip_pipeline/meson.build @@ -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( @@ -20,5 +25,7 @@ sources = files( 'pipeline.c', 'swq.c', 'tap.c', - 'tmgr.c' + 'thread.c', + 'tmgr.c', + 'cryptodev.c' )