mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
b077ccccfb
Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Feb 28 21:57:16 CET 2011 on sn-devel-104
32 lines
884 B
Python
32 lines
884 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',
|
|
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'
|
|
)
|
|
|