1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-06 13:18:07 +03:00
samba-mirror/source4/ntvfs/sysdep/wscript_build
Volker Lendecke 168db8b9d2 waf: Fix the FreeBSD build with libinotify
Signed-off-by: Volker Lendecke <vl@samba.org>
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Mon Jan  6 19:50:22 CET 2014 on sn-devel-104
2014-01-06 19:50:22 +01:00

32 lines
892 B
Python

#!/usr/bin/env python
bld.SAMBA_MODULE('sys_notify_inotify',
source='inotify.c',
subsystem='sys_notify',
init_function='sys_notify_inotify_init',
deps='events inotify',
enabled = bld.CONFIG_SET('HAVE_LINUX_INOTIFY')
)
bld.SAMBA_SUBSYSTEM('sys_notify',
source='sys_notify.c',
deps='talloc tevent'
)
bld.SAMBA_MODULE('sys_lease_linux',
source='sys_lease_linux.c',
deps='tevent',
subsystem='sys_lease',
init_function='sys_lease_linux_init',
enabled = bld.CONFIG_SET('HAVE_F_SETLEASE_DECL')
)
bld.SAMBA_SUBSYSTEM('sys_lease',
source='sys_lease.c',
deps='talloc'
)