bus/pci: fix use after free on unplug
[dpdk.git] / examples / l2fwd-cat / meson.build
index 4e2777a..68554e7 100644 (file)
@@ -8,8 +8,14 @@
 
 pqos = cc.find_library('pqos', required: false)
 build = pqos.found()
+if not build
+    subdir_done()
+endif
+
 ext_deps += pqos
+allow_experimental_apis = true
 cflags += '-I/usr/local/include' # assume pqos lib installed in /usr/local
 sources = files(
-       'cat.c', 'l2fwd-cat.c'
+        'cat.c',
+        'l2fwd-cat.c',
 )