mirror of
https://github.com/samba-team/samba.git
synced 2025-06-21 03:17:08 +03:00
there is a libsecurity on OSF1 which clasheѕ with our security lib. see bug #9023. Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Fri Aug 10 14:22:21 CEST 2012 on sn-devel-104
23 lines
528 B
Python
Executable File
23 lines
528 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('dsdb-module',
|
|
source=[],
|
|
deps='DSDB_MODULE_HELPERS DSDB_MODULE_HELPER_RIDALLOC',
|
|
private_library=True,
|
|
grouping_library=True)
|
|
|
|
bld.SAMBA_SUBSYSTEM('DSDB_MODULE_HELPERS',
|
|
source='util.c acl_util.c schema_util.c',
|
|
autoproto='util_proto.h',
|
|
deps='ldb ndr samdb-common samba-security'
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('DSDB_MODULE_HELPER_RIDALLOC',
|
|
source='ridalloc.c',
|
|
autoproto='ridalloc.h',
|
|
deps='MESSAGING',
|
|
)
|
|
|
|
if bld.AD_DC_BUILD_IS_ENABLED():
|
|
bld.PROCESS_SEPARATE_RULE("server")
|