mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
6dbcffb51d
This is needed to remove samba specifc symbols from the bundled ldb, in order to get the ABI right. metze Signed-off-by: Andreas Schneider <asn@samba.org>
22 lines
358 B
Python
22 lines
358 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('LZXPRESS',
|
|
deps='replace',
|
|
source='../../lib/compression/lzxpress.c'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('GENCACHE',
|
|
source='../../source3/lib/gencache.c',
|
|
enabled=False,
|
|
deps='TDB_WRAP'
|
|
)
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('TDB_WRAP',
|
|
source='tdb_wrap.c',
|
|
public_deps='tdb talloc',
|
|
public_headers='tdb_wrap.h'
|
|
)
|
|
|