diff options
-rw-r--r-- | source4/lib/ldb/wscript | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index 6ea68976f9..58b3e4b93a 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -99,6 +99,14 @@ def build(bld): enabled=s4_build, subsystem='LIBLDB') + # 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' + ldb_deps = 'tevent LIBLDB' if s4_build: ldb_deps += ' LDBSAMBA POPT_CREDENTIALS POPT_SAMBA LIBCMDLINE_CREDENTIALS gensec' @@ -126,3 +134,4 @@ def build(bld): bld.SAMBA_PYTHON('pyldb', 'pyldb.c', deps='ldb', realname='ldb.so') + |