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

@ -21,20 +21,35 @@ pa_version_major_minor = pa_version_major + '.' + pa_version_minor
pa_api_version = 12 pa_api_version = 12
pa_protocol_version = 33 pa_protocol_version = 33
apiversion = '1.0' # The stable ABI for client applications, for the version info x:y:z
soversion = 0 # always will hold y=z
# FIXME: this doesn't actually do what we want it to libpulse_version_info = [21, 0, 21]
# maintaining compatibility with the previous libtool versioning
# current = minor * 100 + micro
libversion = '@0@.@1@.0'.format(soversion, pa_version_minor.to_int() * 100 + pa_version_micro.to_int())
# A simplified, synchronous, ABI-stable interface for client applications. # A simplified, synchronous, ABI-stable interface for client
# For the version x:y:z always will hold y=z. # applications, for the version info x:y:z always will hold y=z
libpulse_simple_version = '1.1.1' libpulse_simple_version_info = [1, 1, 1]
# The ABI-stable GLib adapter for client applications. # The ABI-stable GLib adapter for client applications, for the version
# For the version x:y:z always will hold y=z. # info x:y:z always will hold y=z
libpulse_mainloop_glib_version = '0.5.0' libpulse_mainloop_glib_version_info = [0, 5, 0]
libpulse_version = '@0@.@1@.@2@'.format(
libpulse_version_info[0] - libpulse_version_info[2],
libpulse_version_info[0],
libpulse_version_info[1],
)
libpulse_simple_version = '@0@.@1@.@2@'.format(
libpulse_simple_version_info[0] - libpulse_simple_version_info[2],
libpulse_simple_version_info[0],
libpulse_simple_version_info[1],
)
libpulse_mainloop_glib_version = '@0@.@1@.@2@'.format(
libpulse_mainloop_glib_version_info[0] - libpulse_mainloop_glib_version_info[2],
libpulse_mainloop_glib_version_info[0],
libpulse_mainloop_glib_version_info[1],
)
# Paths # Paths

View file

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