diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-20 13:53:35 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-20 15:50:27 +1000 |
commit | 773a8afbba27a5e2e48577100f3ca9873b506615 (patch) | |
tree | 214e581d8fb0430e2be12d75e8e6f8f92257a382 /lib/tdb/wscript | |
parent | cdaac0afc12d155417764baa135bf29067103da4 (diff) | |
download | samba-773a8afbba27a5e2e48577100f3ca9873b506615.tar.gz samba-773a8afbba27a5e2e48577100f3ca9873b506615.tar.bz2 samba-773a8afbba27a5e2e48577100f3ca9873b506615.zip |
tdb: update tdb ABI to use hide_symbols=True
We now use -fvisibilty=hidden to hide symbols from outside the tdb
shared library.
This also moved tdb_transaction_recover() into the tdb_private.h
header, as it should never have been a public API. For that reason we
are changing the version number. We're only doing a minor version
increment as it is extremely unlikely that anyone was actually using
tdb_transaction_recover() as its locking requirements were rather
unusual.
Pair-Programmed-With: Rusty Russell <rusty@samba.org>
Diffstat (limited to 'lib/tdb/wscript')
-rw-r--r-- | lib/tdb/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript index 9b637cd3c8..899fe79481 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -1,7 +1,7 @@ #!/usr/bin/env python APPNAME = 'tdb' -VERSION = '1.2.1' +VERSION = '1.2.2' blddir = 'bin' @@ -68,6 +68,7 @@ def build(bld): includes='include', abi_file='ABI/tdb-%s.sigs' % VERSION, abi_match='tdb_*', + hide_symbols=True, vnum=VERSION) bld.SAMBA_BINARY('tdbtorture', |