From: Thibault Saunier Date: Wed, 22 Sep 2021 16:12:07 +0000 (-0300) Subject: python:meson: Do not build plugin when statically built X-Git-Tag: 1.19.3~194 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81ab28e5886c33839546eeda5bc85865d617ad93;p=platform%2Fupstream%2Fgstreamer.git python:meson: Do not build plugin when statically built It is not supported yet Part-of: --- diff --git a/subprojects/gst-python/meson.build b/subprojects/gst-python/meson.build index f6e2491..7ae77b1 100644 --- a/subprojects/gst-python/meson.build +++ b/subprojects/gst-python/meson.build @@ -97,7 +97,11 @@ if get_option('default_library') == 'shared' endif subdir('gi') -subdir('plugin') +if get_option('default_library') != 'static' + subdir('plugin') +else + warning('Python plugin not supported with `static` builds yet.') +endif if not get_option('tests').disabled() subdir('testsuite') endif