git.droids-corp.org
/
dpdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
net/avp: remove resources when port is closed
[dpdk.git]
/
drivers
/
net
/
vdev_netvsc
/
meson.build
1
# SPDX-License-Identifier: BSD-3-Clause
2
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
3
4
if not is_linux
5
build = false
6
endif
7
sources = files('vdev_netvsc.c')
8
9
allow_experimental_apis = true
10
11
cflags_options = [
12
'-Wall',
13
'-Wextra',
14
'-D_BSD_SOURCE',
15
'-D_DEFAULT_SOURCE',
16
'-D_XOPEN_SOURCE=600'
17
]
18
foreach option:cflags_options
19
if cc.has_argument(option)
20
cflags += option
21
endif
22
endforeach