From 33a3686995840adeec304e7be34d56833a6d62be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 21 Jan 2019 17:38:07 +0000 Subject: [PATCH] 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 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 02af00aa31..585041569d 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') }, }