X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Ftap%2Fmeson.build;h=c1cdf9e67397873d341a17033f2f4d62359ca70a;hb=be797cbf4582f3c474f208aeb3d1baa4001a6156;hp=f7e8852d2f64c25c93c4cc8ae5d8bea5a04185e3;hpb=c9aa56edec8ee3d210904c36e145a592a8a56218;p=dpdk.git diff --git a/drivers/net/tap/meson.build b/drivers/net/tap/meson.build index f7e8852d2f..c1cdf9e673 100644 --- a/drivers/net/tap/meson.build +++ b/drivers/net/tap/meson.build @@ -1,6 +1,10 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright 2018 Luca Boccassi +if not is_linux + build = false + reason = 'only supported on linux' +endif sources = files( 'rte_eth_tap.c', 'tap_bpf_api.c', @@ -35,7 +39,6 @@ args = [ 'TCA_ACT_BPF_FD' ], ] config = configuration_data() -allow_experimental_apis = true foreach arg:args config.set(arg[0], cc.has_header_symbol(arg[1], arg[2])) endforeach