build: disable experimental API check internally
[dpdk.git] / drivers / net / tap / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2018 Luca Boccassi <bluca@debian.org>
3
4 if not is_linux
5         build = false
6         reason = 'only supported on linux'
7 endif
8 sources = files(
9         'rte_eth_tap.c',
10         'tap_bpf_api.c',
11         'tap_flow.c',
12         'tap_intr.c',
13         'tap_netlink.c',
14         'tap_tcmsgs.c',
15 )
16
17 deps = ['bus_vdev', 'gso', 'hash']
18
19 cflags += '-DTAP_MAX_QUEUES=16'
20
21 # To maintain the compatibility with the make build system
22 # tap_autoconf.h file is still generated.
23 # input array for meson symbol search:
24 # [ "MACRO to define if found", "header for the search",
25 #   "enum/define", "symbol to search" ]
26 #
27 args = [
28         [ 'HAVE_TC_FLOWER', 'linux/pkt_cls.h',
29           'TCA_FLOWER_UNSPEC' ],
30         [ 'HAVE_TC_VLAN_ID', 'linux/pkt_cls.h',
31           'TCA_FLOWER_KEY_VLAN_PRIO' ],
32         [ 'HAVE_TC_BPF', 'linux/pkt_cls.h',
33           'TCA_BPF_UNSPEC' ],
34         [ 'HAVE_TC_BPF_FD', 'linux/pkt_cls.h',
35           'TCA_BPF_FD' ],
36         [ 'HAVE_TC_ACT_BPF', 'linux/tc_act/tc_bpf.h',
37           'TCA_ACT_BPF_UNSPEC' ],
38         [ 'HAVE_TC_ACT_BPF_FD', 'linux/tc_act/tc_bpf.h',
39           'TCA_ACT_BPF_FD' ],
40 ]
41 config = configuration_data()
42 foreach arg:args
43         config.set(arg[0], cc.has_header_symbol(arg[1], arg[2]))
44 endforeach
45 configure_file(output : 'tap_autoconf.h', configuration : config)