macOS: Fix plugin link with Python 3.8
authorAndoni Morales Alastruey <ylatuya@gmail.com>
Thu, 8 Oct 2020 10:56:10 +0000 (12:56 +0200)
committerAndoni Morales Alastruey <ylatuya@gmail.com>
Thu, 8 Oct 2020 10:56:10 +0000 (12:56 +0200)
see: https://gitlab.freedesktop.org/gstreamer/gst-python/-/issues/28

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-python/-/merge_requests/42>

meson.build

index 9af4ee9..9ac41ec 100644 (file)
@@ -29,12 +29,7 @@ if pythonver.version_compare('<3.0')
   error('Python2 is not supported anymore, please port your code to python3 (@0@ specified)'.format(python.language_version()))
 endif
 
-# Workaround for https://github.com/mesonbuild/meson/issues/5629
-# https://gitlab.freedesktop.org/gstreamer/gst-python/issues/28
-python_dep = dependency('python-@0@-embed'.format(pythonver), version: '>=3', required: false)
-if not python_dep.found()
-  python_dep = python.dependency(required : true)
-endif
+python_dep = python.dependency(embed:true, required : true)
 
 python_abi_flags = python.get_variable('ABIFLAGS', '')
 pylib_loc = get_option('libpython-dir')