mirror of
https://github.com/samba-team/samba.git
synced 2025-01-17 02:05:21 +03:00
eb0005dfca
this prevents double linking of the tdb wrap code
23 lines
468 B
Python
23 lines
468 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_LIBRARY('tdb-wrap',
|
|
source='tdb_wrap.c',
|
|
deps='tdb talloc samba-util',
|
|
public_headers='tdb_wrap.h',
|
|
private_library=True
|
|
)
|
|
|