Last change
on this file was 745, checked in by Silvan Scherrer, 13 years ago |
Samba Server: updated trunk to 3.6.0
|
File size:
915 bytes
|
Line | |
---|
1 | #!/usr/bin/env python
|
---|
2 |
|
---|
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',
|
---|
8 | enabled = bld.CONFIG_SET('HAVE_LINUX_INOTIFY')
|
---|
9 | )
|
---|
10 |
|
---|
11 |
|
---|
12 | bld.SAMBA_SUBSYSTEM('sys_notify',
|
---|
13 | source='sys_notify.c',
|
---|
14 | deps='talloc tevent'
|
---|
15 | )
|
---|
16 |
|
---|
17 |
|
---|
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')
|
---|
24 | )
|
---|
25 |
|
---|
26 |
|
---|
27 | bld.SAMBA_SUBSYSTEM('sys_lease',
|
---|
28 | source='sys_lease.c',
|
---|
29 | deps='talloc'
|
---|
30 | )
|
---|
31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.