mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
macOS: Fix plugin link with Python 3.8
see: https://gitlab.freedesktop.org/gstreamer/gst-python/-/issues/28 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-python/-/merge_requests/42>
This commit is contained in:
parent
6396ebf8e0
commit
2b5b0d951e
1 changed files with 1 additions and 6 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue