diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-18 18:21:04 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-18 18:24:27 +1000 |
commit | 7aa4c11fc4c25df6ea25dfe28d3dca851b91f909 (patch) | |
tree | 90ec97e846d85a96717563bc50f5dad91f4035ea /source4/lib/ldb/wscript | |
parent | 1a73e967f594c739f7533fdce0e1c18579d0bf21 (diff) | |
download | samba-7aa4c11fc4c25df6ea25dfe28d3dca851b91f909.tar.gz samba-7aa4c11fc4c25df6ea25dfe28d3dca851b91f909.tar.bz2 samba-7aa4c11fc4c25df6ea25dfe28d3dca851b91f909.zip |
build: more adjustments for the ABI type name maps
- use 'va_list' instead of 'struct __va_list_tag *'
Using the C name for va_list is preferable
- add support for negative ABI name matches in abi_match=. That is
used to exlude ldb_*module_ops from the ldb ABI
- don't include the ldb module ops or backend ops in the ABI
Diffstat (limited to 'source4/lib/ldb/wscript')
-rw-r--r-- | source4/lib/ldb/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/wscript b/source4/lib/ldb/wscript index cc0f218b8f..3348070b50 100644 --- a/source4/lib/ldb/wscript +++ b/source4/lib/ldb/wscript @@ -164,7 +164,7 @@ def build(bld): pc_files='ldb.pc', cflags='-DLDB_MODULESDIR=\"%s\"' % modules_dir, abi_file=abi_file, - abi_match='ldb_*', + abi_match='!ldb_*module_ops !ldb_*backend_ops ldb_*', vnum=VERSION) bld.SAMBA_SUBSYSTEM('LIBLDB_CMDLINE', |