smbdotconf: add client ldap sasl wrapping = {starttls,ldaps}
[samba.git] / source3 / smbd / notifyd / wscript_build
blob6880a314a6f517066d5ee4c28f8e9ecd91942305
1 #!/usr/bin/env python
3 bld.SAMBA3_SUBSYSTEM('fcn_wait',
4 source='fcn_wait.c',
5 deps='samba3core')
7 bld.SAMBA3_SUBSYSTEM('notifyd_db',
8 source='notifyd_entry.c notifyd_db.c',
9 deps='samba-debug dbwrap errors3')
11 bld.SAMBA3_SUBSYSTEM('notifyd',
12 source='notifyd.c',
13 deps='''
14 util_tdb
15 TDB_LIB
16 messages_util
17 notifyd_db
18 ''')
20 bld.SAMBA3_BINARY('notifyd-tests',
21 source='tests.c',
22 install=False,
23 deps='''
24 smbconf
25 ''')
27 bld.SAMBA3_BINARY('notifydd',
28 source='notifydd.c',
29 install=False,
30 deps='''notifyd
31 smbconf
32 ''')
34 TORTURE_NOTIFYD_SOURCE='test_notifyd.c'
35 TORTURE_NOTIFYD_DEPS='fcn_wait notifyd_db'
37 bld.SAMBA_MODULE('TORTURE_NOTIFYD',
38 source=TORTURE_NOTIFYD_SOURCE,
39 subsystem='smbtorture',
40 init_function='torture_notifyd_init',
41 deps=TORTURE_NOTIFYD_DEPS,
42 internal_module=True,
43 enabled=bld.PYTHON_BUILD_IS_ENABLED()