summaryrefslogtreecommitdiff
path: root/lib/ldb/wscript
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2012-10-31 16:06:03 +1100
committerAndrew Tridgell <tridge@samba.org>2012-11-01 15:40:41 +1100
commit30ffdda45bd3ae602b453c9c1bbdb77ea3de8a8d (patch)
tree2859583eec07abce06678d464aea79501dd3e554 /lib/ldb/wscript
parentfc47b0d03c577730ce0ef9e09092f80c0712d5d0 (diff)
downloadsamba-30ffdda45bd3ae602b453c9c1bbdb77ea3de8a8d.tar.gz
samba-30ffdda45bd3ae602b453c9c1bbdb77ea3de8a8d.tar.bz2
samba-30ffdda45bd3ae602b453c9c1bbdb77ea3de8a8d.zip
ldb: fixed callers for ldb_pack_data() and ldb_unpack_data()
with ltdb_pack_data() and ltdb_unpack_data() now moved into common, we need to increase the minor version and fixup callers of the API Note that this relies on struct ldb_val being the same shape as TDB_DATA, in much the same way as we rely on ldb_val and DATA_BLOB being the same shape. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'lib/ldb/wscript')
-rwxr-xr-xlib/ldb/wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ldb/wscript b/lib/ldb/wscript
index 66fa24ba58..8a36b5d395 100755
--- a/lib/ldb/wscript
+++ b/lib/ldb/wscript
@@ -1,7 +1,7 @@
#!/usr/bin/env python
APPNAME = 'ldb'
-VERSION = '1.1.13'
+VERSION = '1.1.14'
blddir = 'bin'
@@ -89,7 +89,7 @@ def build(bld):
COMMON_SRC = bld.SUBDIR('common',
'''ldb_modules.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
- ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c
+ ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c ldb_pack.c
ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
bld.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
@@ -228,7 +228,7 @@ def build(bld):
bld.SAMBA_MODULE('ldb_tdb',
bld.SUBDIR('ldb_tdb',
- '''ldb_tdb.c ldb_pack.c ldb_search.c ldb_index.c
+ '''ldb_tdb.c ldb_search.c ldb_index.c
ldb_cache.c ldb_tdb_wrap.c'''),
init_function='ldb_tdb_init',
module_init_name='ldb_init_module',
@@ -254,7 +254,7 @@ def build(bld):
install=False)
# ldbdump doesn't get installed
- bld.SAMBA_BINARY('ldbdump', 'tools/ldbdump.c ldb_tdb/ldb_pack.c', deps='ldb-cmdline ldb',
+ bld.SAMBA_BINARY('ldbdump', 'tools/ldbdump.c', deps='ldb-cmdline ldb',
install=False)
bld.SAMBA_LIBRARY('ldb-cmdline',