Refactor crypto RNG; add getrandom() support
[tinc] / src / linux / meson.build
1 check_headers += [
2   'linux/if_tun.h',
3   'netpacket/packet.h',
4   'sys/epoll.h',
5   'sys/random.h',
6 ]
7
8 check_functions += [
9   'recvmmsg',
10   'getrandom',
11 ]
12
13 src_tincd += files('device.c')
14
15 if opt_uml
16   src_tincd += files('uml_device.c')
17   cdata.set('ENABLE_UML', 1)
18 endif
19