s3-docs: Improve "winbind nss info" section in man smb.conf.
[Samba/gbeck.git] / source4 / lib / com / wscript_build
blob9d962e16a5a54929c51c1bade10fd9c077dd3519
1 #!/usr/bin/env python
3 bld.SAMBA_SUBSYSTEM('COM',
4 source='tables.c rot.c main.c',
5 deps='LIBSAMBA-UTIL LIBSAMBA-HOSTCONFIG LIBEVENTS LIBNDR PIDL_DCOM'
9 bld.SAMBA_SUBSYSTEM('DCOM',
10 source='dcom/main.c dcom/tables.c',
11 public_deps='COM DCOM_PROXY_DCOM RPC_NDR_REMACT RPC_NDR_OXIDRESOLVER',
12 # ORPCTHIS maps to this.*, which hits the "No C++ keywords" define
13 # unless we force off developer mode
14 cflags_end = '-UDEVELOPER',
15 # even with the above hack this still doesn't compile - disable it for now
16 enabled=False
20 bld.SAMBA_MODULE('com_simple',
21 source='classes/simple.c',
22 subsystem='COM',
23 init_function='com_simple_init'
27 bld.SAMBA_PYTHON('pycom',
28 source='pycom.c',
29 deps='COM',
30 realname='samba/com.so',