1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-01 05:47:28 +03:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
892 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
bld.SAMBA_MODULE('sys_notify_inotify',
2010-03-19 20:26:25 +11:00
source='inotify.c',
subsystem='sys_notify',
init_function='sys_notify_inotify_init',
deps='events inotify',
2010-03-19 20:26:25 +11:00
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',
2010-03-28 21:33:48 +11:00
source='sys_lease.c',
deps='talloc'
)