From: Tim-Philipp Müller Date: Mon, 21 Jan 2019 17:38:07 +0000 (+0000) Subject: Configure gst-rtsp-server before gst-devtools X-Git-Tag: 1.19.3~481^2~255 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33a3686995840adeec304e7be34d56833a6d62be;p=platform%2Fupstream%2Fgstreamer.git Configure gst-rtsp-server before gst-devtools Since gst-devtools checks for gst-rtsp-server and will happily pick up an external dep which isn't what we want if we configure it as subproject afterwards. This assumes meson dicts are always stable, which may not necessarily be the case, but it seems to work in practice for now. See #16 --- diff --git a/meson.build b/meson.build index 02af00a..5850415 100644 --- a/meson.build +++ b/meson.build @@ -41,9 +41,9 @@ subprojects = { 'gst-omx': { 'option': get_option('omx'), }, 'gst-libav': { 'option': get_option('libav') }, 'gstreamer-vaapi': { 'option': get_option('vaapi') }, + 'gst-rtsp-server': { 'option': get_option('rtsp_server') }, 'gst-devtools': { 'option': get_option('devtools') }, 'gst-editing-services': { 'option': get_option('ges') }, - 'gst-rtsp-server': { 'option': get_option('rtsp_server') }, 'gstreamer-sharp': { 'option': get_option('sharp') }, }