meson: Fix library versioning to match Autotools

For ease of maintaining both build systems, use the same version info
sequences as configure.ac. This should be simplified after Autotools has
been dropped.
This commit is contained in:
Jan Alexander Steffens (heftig) 2019-07-11 01:25:38 +02:00 committed by Arun Raghavan
parent 09231eaead
commit 8e98ed9493
2 changed files with 28 additions and 14 deletions

View file

@ -68,10 +68,9 @@ endif
libpulse = shared_library('pulse',
libpulse_sources,
libpulse_headers,
version : libversion,
version : libpulse_version,
include_directories : [configinc, topinc],
c_args : [pa_c_args],
soversion : soversion,
install : true,
dependencies : [libm_dep, thread_dep, libpulsecommon_dep, dbus_dep],
implicit_include_directories : false)