net/iavf: fix default RSS configuration
[dpdk.git] / drivers / net / ionic / meson.build
index 06b7760..631ea27 100644 (file)
@@ -1,6 +1,12 @@
 # SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
 # Copyright(c) 2019 Pensando
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
 sources = files(
        'ionic_mac_api.c',
        'ionic_rx_filter.c',
@@ -10,13 +16,3 @@ sources = files(
        'ionic_lif.c',
        'ionic_main.c'
 )
-
-error_cflags = [
-  '-Wno-missing-field-initializers',
-]
-
-foreach flag: error_cflags
-        if cc.has_argument(flag)
-                c_args += flag
-        endif
-endforeach