aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/options/bsd/meson.build
blob: 3a7c91180d387cf0ce5fd886088341369a7c22cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
if disable_bsd_option
	subdir_done()
endif

libc_sources += files(
	'generic/arpa-nameser-stubs.cpp',
	'generic/ether.cpp',
	'generic/getopt.cpp',
)

if not no_headers
	install_headers(
		'include/fstab.h',
	)
	install_headers(
		'include/arpa/nameser.h',
		'include/arpa/nameser_compat.h',
		subdir: 'arpa'
	)
	install_headers(
		'include/sys/queue.h',
		subdir: 'sys'
	)
	install_headers(
		'include/netinet/ether.h',
		subdir: 'netinet'
	)
	install_headers(
		'include/bits/bsd/bsd_unistd.h',
		subdir: 'bits/bsd'
	)
endif