summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-29 15:27:54 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:27:15 +1000
commit970892594b15b946667e02d2b521cf8a501f2662 (patch)
tree523bff2cd0b5261a7b0b4e398f67bdd9c6005bb4 /buildtools/wafsamba
parentd87b77e649bee4e4acbc0ab1d2d462673b541e7a (diff)
downloadsamba-970892594b15b946667e02d2b521cf8a501f2662.tar.gz
samba-970892594b15b946667e02d2b521cf8a501f2662.tar.bz2
samba-970892594b15b946667e02d2b521cf8a501f2662.zip
build: override PACKAGE_VERSION in pkg-config generation for libraries
we should use the vnum
Diffstat (limited to 'buildtools/wafsamba')
-rw-r--r--buildtools/wafsamba/wafsamba.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
index 291d8acb4b..1ab583fcc9 100644
--- a/buildtools/wafsamba/wafsamba.py
+++ b/buildtools/wafsamba/wafsamba.py
@@ -217,7 +217,7 @@ def SAMBA_LIBRARY(bld, libname, source,
bld.PUBLIC_HEADERS(public_headers, header_path=header_path)
if pc_files is not None:
- bld.PKG_CONFIG_FILES(pc_files)
+ bld.PKG_CONFIG_FILES(pc_files, vnum=vnum)
Build.BuildContext.SAMBA_LIBRARY = SAMBA_LIBRARY
@@ -761,16 +761,18 @@ def subst_at_vars(task):
-def PKG_CONFIG_FILES(bld, pc_files):
+def PKG_CONFIG_FILES(bld, pc_files, vnum=None):
'''install some pkg_config pc files'''
dest = '${PKGCONFIGDIR}'
dest = bld.EXPAND_VARIABLES(dest)
for f in TO_LIST(pc_files):
base=os.path.basename(f)
- bld.SAMBA_GENERATOR('PKGCONFIG_%s' % base,
- rule=subst_at_vars,
- source=f+'.in',
- target=f)
+ t = bld.SAMBA_GENERATOR('PKGCONFIG_%s' % base,
+ rule=subst_at_vars,
+ source=f+'.in',
+ target=f)
+ if vnum:
+ t.env.PACKAGE_VERSION = vnum
INSTALL_FILES(bld, dest, f, flat=True, destname=base)
Build.BuildContext.PKG_CONFIG_FILES = PKG_CONFIG_FILES