diff options
author | Günther Deschner <gd@samba.org> | 2013-08-22 15:00:32 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2013-08-22 20:48:44 +0200 |
commit | 573b455de9a45990446af26eea01539a32fef209 (patch) | |
tree | 0004870399a53428c2dbe3a856b04d159270bf25 /lib | |
parent | a0b245c78271d060d59f763fb586221ec10edd7b (diff) | |
download | samba-573b455de9a45990446af26eea01539a32fef209.tar.gz samba-573b455de9a45990446af26eea01539a32fef209.tar.bz2 samba-573b455de9a45990446af26eea01539a32fef209.zip |
pkgconfig: Do not hardcode library version numbers in pc files.
We control version numbers via 'vnum' from the wscript_build files for all other
libraries. In case of libndr we already reported a wrong 0.0.1 version via
pkgconfig while in fact the library is versioned as 0.0.2.
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Kai Blin <kai@samba.org>
Autobuild-User(master): Kai Blin <kai@samba.org>
Autobuild-Date(master): Thu Aug 22 20:48:44 CEST 2013 on sn-devel-104
Diffstat (limited to 'lib')
-rw-r--r-- | lib/torture/torture.pc.in | 2 | ||||
-rw-r--r-- | lib/util/samba-util.pc.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/torture/torture.pc.in b/lib/torture/torture.pc.in index 459b35c582..e0421b0441 100644 --- a/lib/torture/torture.pc.in +++ b/lib/torture/torture.pc.in @@ -7,6 +7,6 @@ modulesdir=${prefix}/modules/torture Name: torture Description: Samba torture (test) suite Requires: talloc -Version: 0.0.1 +Version: @PACKAGE_VERSION@ Libs: @LIB_RPATH@ -L${libdir} -ltorture Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1 diff --git a/lib/util/samba-util.pc.in b/lib/util/samba-util.pc.in index a49c1d0290..65876c4547 100644 --- a/lib/util/samba-util.pc.in +++ b/lib/util/samba-util.pc.in @@ -6,6 +6,6 @@ includedir=@includedir@ Name: samba-util Description: Samba utility functions Requires: talloc tevent -Version: 0.0.1 +Version: @PACKAGE_VERSION@ Libs: @LIB_RPATH@ -L${libdir} -lsamba-util Cflags: -I${includedir} -DHAVE_IMMEDIATE_STRUCTURES=1 |