Move waf into third_party/.
[Samba.git] / source4 / ntvfs / sysdep / wscript_build
blobbfb4e55e30c4cdd691581eef5b26c76e7897e515
1 #!/usr/bin/env python
3 bld.SAMBA_MODULE('sys_notify_inotify',
4 source='inotify.c',
5 subsystem='sys_notify',
6 init_function='sys_notify_inotify_init',
7 deps='events inotify',
8 enabled = bld.CONFIG_SET('HAVE_LINUX_INOTIFY')
12 bld.SAMBA_SUBSYSTEM('sys_notify',
13 source='sys_notify.c',
14 deps='talloc tevent'
18 bld.SAMBA_MODULE('sys_lease_linux',
19 source='sys_lease_linux.c',
20 deps='tevent',
21 subsystem='sys_lease',
22 init_function='sys_lease_linux_init',
23 enabled = bld.CONFIG_SET('HAVE_F_SETLEASE_DECL')
27 bld.SAMBA_SUBSYSTEM('sys_lease',
28 source='sys_lease.c',
29 deps='talloc'