diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-05 10:14:12 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-07 17:45:20 +1100 |
commit | 36b2227eca55e769813eecc97366ba18a2832fb3 (patch) | |
tree | e7ad966a443a67762814a256d1ef3446471b8d27 /wscript_build | |
parent | ed41edddde6b81b759d4b4c8d9e59ee541a37c0a (diff) | |
download | samba-36b2227eca55e769813eecc97366ba18a2832fb3.tar.gz samba-36b2227eca55e769813eecc97366ba18a2832fb3.tar.bz2 samba-36b2227eca55e769813eecc97366ba18a2832fb3.zip |
ldb: use ldb directly rather than via a copy
This avoids needing to manually sync the two files, which due to the
top level build must be API compatible at all times anyway.
The most important recent change was:
commit e3b76bd6205acfc1a89fbcab5d9588b32cb47b88
Author: Andrew Tridgell <tridge@samba.org>
Date: Thu Jul 28 15:51:31 2011 +1000
ldb: fixed a search expression parse bug
However, as we always control the search expression in the callers to
this code, no backport to other releases is required.
Andrew Bartlett
Diffstat (limited to 'wscript_build')
-rw-r--r-- | wscript_build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript_build b/wscript_build index 87b78a3f77..936aa53eb4 100644 --- a/wscript_build +++ b/wscript_build @@ -19,7 +19,7 @@ bld.env.build_public_headers = 'include/public' # these are includes which appear in public headers, but with #ifdef conditional # compilation, so they are safe -bld.env.public_headers_skip = ['param/param_proto.h', 'lib/ldb_compat.h'] +bld.env.public_headers_skip = ['param/param_proto.h'] samba_version.load_version(bld.env, is_install=bld.is_install) bld.SAMBA_MKVERSION('version.h') |