mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
Make ldb configuration --disable-python work as intended
Signed-off-by: Timur I. Bakeyev <timur@iXsystems.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
parent
4c354cd551
commit
95c117ff11
@ -201,9 +201,15 @@ def build(bld):
|
||||
bld.RECURSE('lib/tdb')
|
||||
|
||||
if bld.env.standalone_ldb:
|
||||
if not 'PACKAGE_VERSION' in bld.env:
|
||||
bld.env.PACKAGE_VERSION = VERSION
|
||||
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
|
||||
private_library = False
|
||||
else:
|
||||
private_library = True
|
||||
# we're not currently linking against the ldap libs, but ldb.pc.in
|
||||
# has @LDAP_LIBS@
|
||||
bld.env.LDAP_LIBS = ''
|
||||
|
||||
LDB_MAP_SRC = bld.SUBDIR('ldb_map',
|
||||
'ldb_map.c ldb_map_inbound.c ldb_map_outbound.c')
|
||||
@ -224,13 +230,6 @@ def build(bld):
|
||||
if bld.PYTHON_BUILD_IS_ENABLED():
|
||||
if not bld.CONFIG_SET('USING_SYSTEM_PYLDB_UTIL'):
|
||||
for env in bld.gen_python_environments(['PKGCONFIGDIR']):
|
||||
# we're not currently linking against the ldap libs, but ldb.pc.in
|
||||
# has @LDAP_LIBS@
|
||||
bld.env.LDAP_LIBS = ''
|
||||
|
||||
if not 'PACKAGE_VERSION' in bld.env:
|
||||
bld.env.PACKAGE_VERSION = VERSION
|
||||
bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
|
||||
|
||||
name = bld.pyembed_libname('pyldb-util')
|
||||
bld.SAMBA_LIBRARY(name,
|
||||
|
Loading…
Reference in New Issue
Block a user