diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-10-27 02:56:10 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-10-27 03:53:21 +0000 |
commit | 4c634a3b2e22b45027a1d376573575463a460846 (patch) | |
tree | 492d65282ad1707df82d176829f59cf749582000 /lib/talloc/wscript | |
parent | 073d3bf1fc8b129ed7cd74b51608e40640b499c5 (diff) | |
download | samba-4c634a3b2e22b45027a1d376573575463a460846.tar.gz samba-4c634a3b2e22b45027a1d376573575463a460846.tar.bz2 samba-4c634a3b2e22b45027a1d376573575463a460846.zip |
talloc: fix waf build for libtalloc-compat1
We need to use 'libtalloc.so.1' as soname, otherwise the
compat library is useless.
metze
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Wed Oct 27 03:53:21 UTC 2010 on sn-devel-104
Diffstat (limited to 'lib/talloc/wscript')
-rw-r--r-- | lib/talloc/wscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 6da1a66783..4e5131c015 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -80,11 +80,11 @@ def build(bld): vnum = VERSION # should we also install the symlink to libtalloc1.so here? - bld.SAMBA_LIBRARY('talloc-compat1', + bld.SAMBA_LIBRARY('talloc-compat1-%s' % (VERSION), 'compat/talloc_compat1.c', - deps='talloc', - enabled=bld.env.TALLOC_COMPAT1, - vnum=VERSION) + public_deps='talloc', + soname='libtalloc.so.1', + enabled=bld.env.TALLOC_COMPAT1) if not bld.env.disable_python: bld.PKG_CONFIG_FILES('pytalloc-util.pc', vnum=VERSION) |