1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2018 Luca Boccassi <bluca@debian.org>
6 reason = 'only supported on Linux'
17 deps = ['bus_vdev', 'gso', 'hash']
19 cflags += '-DTAP_MAX_QUEUES=16'
21 # input array for meson symbol search:
22 # [ "MACRO to define if found", "header for the search",
23 # "enum/define", "symbol to search" ]
26 [ 'HAVE_TC_FLOWER', 'linux/pkt_cls.h', 'TCA_FLOWER_UNSPEC' ],
27 [ 'HAVE_TC_VLAN_ID', 'linux/pkt_cls.h', 'TCA_FLOWER_KEY_VLAN_PRIO' ],
28 [ 'HAVE_TC_BPF', 'linux/pkt_cls.h', 'TCA_BPF_UNSPEC' ],
29 [ 'HAVE_TC_BPF_FD', 'linux/pkt_cls.h', 'TCA_BPF_FD' ],
30 [ 'HAVE_TC_ACT_BPF', 'linux/tc_act/tc_bpf.h', 'TCA_ACT_BPF_UNSPEC' ],
31 [ 'HAVE_TC_ACT_BPF_FD', 'linux/tc_act/tc_bpf.h', 'TCA_ACT_BPF_FD' ],
33 config = configuration_data()
35 config.set(arg[0], cc.has_header_symbol(arg[1], arg[2]))
37 configure_file(output : 'tap_autoconf.h', configuration : config)