build: set soversion to 3

pull/173/head
William Pitcock 2018-01-05 11:18:19 -06:00
parent 789da4cf33
commit 5d6c9ba98c
3 changed files with 5 additions and 5 deletions

View File

@ -13,8 +13,8 @@ PROJECT(pkgconf C)
SET(PACKAGE_BUGREPORT http://github.com/pkgconf/pkgconf/issues) SET(PACKAGE_BUGREPORT http://github.com/pkgconf/pkgconf/issues)
SET(PACKAGE_NAME pkgconf) SET(PACKAGE_NAME pkgconf)
SET(PACKAGE_VERSION 1.3.7) SET(PACKAGE_VERSION 1.3.7)
SET(LIBPKGCONF_VERSION "2.0.0") SET(LIBPKGCONF_VERSION "3.0.0")
SET(LIBPKGCONF_SOVERSION 2) SET(LIBPKGCONF_SOVERSION 3)
#-------- GNU directory variables --------- #-------- GNU directory variables ---------

View File

@ -131,7 +131,7 @@ libpkgconf_la_SOURCES = \
libpkgconf/dependency.c \ libpkgconf/dependency.c \
libpkgconf/queue.c \ libpkgconf/queue.c \
libpkgconf/path.c libpkgconf/path.c
libpkgconf_la_LDFLAGS = -no-undefined -version-info 2:0:0 -export-symbols-regex '^pkgconf_' libpkgconf_la_LDFLAGS = -no-undefined -version-info 3:0:0 -export-symbols-regex '^pkgconf_'
dist_man_MANS = \ dist_man_MANS = \
man/pkgconf.1 \ man/pkgconf.1 \

View File

@ -71,8 +71,8 @@ libpkgconf = shared_library('pkgconf',
'libpkgconf/queue.c', 'libpkgconf/queue.c',
'libpkgconf/tuple.c', 'libpkgconf/tuple.c',
install : true, install : true,
version : '2.0.0', version : '3.0.0',
soversion : '2', soversion : '3',
) )