1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source4/lib/com/wscript_build
Stefan Metzmacher 41981db0d3 s4:lib/com: remove unused pycom binding
This is completely untested and from reading the code it doesn't really
do anything beside always returning None from the get_class_object() method.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Tue May 30 12:16:57 CEST 2017 on sn-devel-144
2017-05-30 12:16:57 +02:00

29 lines
721 B
Python

#!/usr/bin/env python
bld.SAMBA_SUBSYSTEM('COM',
source='tables.c rot.c main.c',
allow_warnings=True,
deps='samba-util samba-hostconfig events ndr NDR_DCOM'
)
bld.SAMBA_SUBSYSTEM('DCOM',
source='dcom/main.c dcom/tables.c',
public_deps='COM DCOM_PROXY_DCOM RPC_NDR_REMACT RPC_NDR_OXIDRESOLVER',
# ORPCTHIS maps to this.*, which hits the "No C++ keywords" define
# unless we force off developer mode
cflags_end = '-UDEVELOPER',
# even with the above hack this still doesn't compile - disable it for now
enabled=False
)
bld.SAMBA_MODULE('com_simple',
source='classes/simple.c',
allow_warnings=True,
deps='talloc',
subsystem='COM',
init_function='com_simple_init'
)