diff --git a/gst/rtsp-server/meson.build b/gst/rtsp-server/meson.build index c2d7b37036..d0fbde1dba 100644 --- a/gst/rtsp-server/meson.build +++ b/gst/rtsp-server/meson.build @@ -51,6 +51,7 @@ gst_rtsp_server = library('gstrtspserver-@0@'.format(api_version), c_args: rtspserver_args, version : libversion, soversion : soversion, + darwin_versions : osxversion, install : true, dependencies : gst_rtsp_server_deps) diff --git a/meson.build b/meson.build index be0674c434..2d79283838 100644 --- a/meson.build +++ b/meson.build @@ -21,7 +21,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'))