notify: check for valid notify_ctx in notify_remove
[Samba.git] / source4 / lib / com / wscript_build
blob763de1fdca3f90fca2087cb1f0c54c0ee75d6409
1 #!/usr/bin/env python
3 bld.SAMBA_SUBSYSTEM('COM',
4 source='tables.c rot.c main.c',
5 allow_warnings=True,
6 deps='samba-util samba-hostconfig events ndr NDR_DCOM'
10 bld.SAMBA_SUBSYSTEM('DCOM',
11 source='dcom/main.c dcom/tables.c',
12 public_deps='COM DCOM_PROXY_DCOM RPC_NDR_REMACT RPC_NDR_OXIDRESOLVER',
13 # ORPCTHIS maps to this.*, which hits the "No C++ keywords" define
14 # unless we force off developer mode
15 cflags_end = '-UDEVELOPER',
16 # even with the above hack this still doesn't compile - disable it for now
17 enabled=False
21 bld.SAMBA_MODULE('com_simple',
22 source='classes/simple.c',
23 allow_warnings=True,
24 deps='talloc',
25 subsystem='COM',
26 init_function='com_simple_init'
30 bld.SAMBA_PYTHON('pycom',
31 source='pycom.c',
32 deps='COM',
33 realname='samba/com.so',