]> git.droids-corp.org - dpdk.git/blobdiff - drivers/net/pfe/meson.build
ethdev: make queue release callback optional
[dpdk.git] / drivers / net / pfe / meson.build
index 799500b0a7bf88cf1f91488cb653bfb8030dea89..684b062090a75f85a7c50a7132eb3c3be3a2cce0 100644 (file)
@@ -1,23 +1,21 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright 2019 NXP
 
-if host_machine.system() != 'linux'
-       build = false
+if not is_linux
+    build = false
+    reason = 'only supported on Linux'
 endif
-deps += ['bus_dpaa']
+deps += ['common_dpaax']
 
-sources = files('pfe_ethdev.c',
-               'pfe_hal.c',
-               'pfe_hif_lib.c',
-               'pfe_hif.c')
+sources = files(
+        'pfe_ethdev.c',
+        'pfe_hal.c',
+        'pfe_hif_lib.c',
+        'pfe_hif.c',
+)
 
 if cc.has_argument('-Wno-pointer-arith')
-       cflags += '-Wno-pointer-arith'
+    cflags += '-Wno-pointer-arith'
 endif
 
-# Driver uses below experimental APIs
-# rte_mem_iova2virt
-# rte_mem_virt2memseg
-allow_experimental_apis = true
-
 includes += include_directories('base')