From 57f2f1d72a70a80e61a2ed6f1abc63a177a590ab Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 9 Dec 2010 21:58:20 +1100 Subject: waf: remove the restriction that private libraries must not have a vnum we need the vnum for ABI checking for public libraries built as private libraries when bundled Autobuild-User: Andrew Tridgell Autobuild-Date: Thu Dec 9 12:47:41 CET 2010 on sn-devel-104 --- lib/tevent/wscript | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/tevent/wscript') diff --git a/lib/tevent/wscript b/lib/tevent/wscript index 81cc594fc2..14c4c60319 100644 --- a/lib/tevent/wscript +++ b/lib/tevent/wscript @@ -71,10 +71,8 @@ def build(bld): bld.PKG_CONFIG_FILES('tevent.pc', vnum=VERSION) bld.INSTALL_FILES('${INCLUDEDIR}', 'tevent.h') private_library = False - vnum = VERSION else: private_library = True - vnum = None if not bld.CONFIG_SET('USING_SYSTEM_TEVENT'): bld.SAMBA_LIBRARY('tevent', @@ -83,7 +81,7 @@ def build(bld): enabled= not bld.CONFIG_SET('USING_SYSTEM_TEVENT'), abi_directory='ABI', abi_match='tevent_* _tevent_*', - vnum=vnum, + vnum=VERSION, private_library=private_library) bld.SAMBA_PYTHON('pytevent', -- cgit