From f6d827f6ff5d20350f104a2c8e597fb6feb4ea02 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 31 Aug 2018 14:47:55 +0530 Subject: [PATCH] meson: Sync libversion and osxversion code from other repos gstreamer-vaapi does not build any libraries, only plugins, so this is not used, but sync it just in case someone does add it in the future. --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a5fa0af..9af8960 100644 --- a/meson.build +++ b/meson.build @@ -169,7 +169,9 @@ api_version = '1.0' soversion = 0 # maintaining compatibility with the previous libtool versioning # current = minor * 100 + micro -libversion = '@0@.@1@.0'.format(soversion, gst_version_minor * 100 + gst_version_micro) +curversion = gst_version_minor * 100 + gst_version_micro +libversion = '@0@.@1@.0'.format(soversion, curversion) +osxversion = curversion + 1 plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir')) -- 2.7.4