net/virtio: improve queue init error path
[dpdk.git] / drivers / net / failsafe / meson.build
index a249ff4..d8343be 100644 (file)
@@ -1,18 +1,22 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2018 Intel Corporation
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 cflags += '-std=gnu99'
 cflags += '-D_DEFAULT_SOURCE'
 cflags += '-D_XOPEN_SOURCE=700'
 cflags += '-pedantic'
-if host_machine.system() == 'linux'
+if is_linux
        cflags += '-DLINUX'
 else
        cflags += '-DBSD'
 endif
 
-allow_experimental_apis = true
-
 sources = files('failsafe_args.c',
        'failsafe.c',
        'failsafe_eal.c',