From 2b5b0d951ed997462c5e1d0ec9f70cabe023058a Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Thu, 8 Oct 2020 12:56:10 +0200 Subject: [PATCH] macOS: Fix plugin link with Python 3.8 see: https://gitlab.freedesktop.org/gstreamer/gst-python/-/issues/28 Part-of: --- meson.build | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/meson.build b/meson.build index 9af4ee94f6..9ac41ec00a 100644 --- a/meson.build +++ b/meson.build @@ -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')