examples: disable unsupported examples on BSD build
authorBruce Richardson <bruce.richardson@intel.com>
Thu, 29 Mar 2018 13:54:33 +0000 (14:54 +0100)
committerBruce Richardson <bruce.richardson@intel.com>
Tue, 17 Apr 2018 14:09:43 +0000 (16:09 +0200)
When building with meson, set build to false when building unsupported
example apps on FreeBSD.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Tested-by: Harry van Haaren <harry.van.haaren@intel.com>
examples/kni/meson.build
examples/l3fwd-power/meson.build
examples/tep_termination/meson.build
examples/vhost/meson.build
examples/vhost_scsi/meson.build

index bf35617..a69f0df 100644 (file)
@@ -6,6 +6,9 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+       build = false
+endif
 deps += ['kni', 'bus_pci']
 allow_experimental_apis = true
 sources = files(
index cb50c7a..6925124 100644 (file)
@@ -6,6 +6,9 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+       build = false
+endif
 deps += ['power', 'timer', 'lpm', 'hash']
 allow_experimental_apis = true
 sources = files(
index 24697ec..6d36362 100644 (file)
@@ -6,6 +6,9 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+       build = false
+endif
 deps += ['hash', 'vhost']
 allow_experimental_apis = true
 sources = files(
index 64c84ee..7b49807 100644 (file)
@@ -6,6 +6,9 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+       build = false
+endif
 deps += 'vhost'
 allow_experimental_apis = true
 sources = files(
index bd78e84..5f92370 100644 (file)
@@ -6,6 +6,9 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+       build = false
+endif
 deps += 'vhost'
 cflags += ['-D_GNU_SOURCE','-D_FILE_OFFSET_BITS=64']
 sources = files(