projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b560fb
)
Skip gst-devtools if json-glib-1.0 is missing
author
Tim-Philipp Müller
<tim@centricular.com>
Thu, 27 Oct 2016 19:07:25 +0000
(20:07 +0100)
committer
Tim-Philipp Müller
<tim@centricular.com>
Thu, 27 Oct 2016 19:11:45 +0000
(20:11 +0100)
We shouldn't fail hard because of a gst-devtools dependency,
so if json-glib-1.0 is not found, just skip the module and
build the rest.
meson.build
patch
|
blob
|
history
diff --git
a/meson.build
b/meson.build
index 861ef7db4d4bfd51aac1bb2c317c39e5180ddf0e..fa043ca575d83e2aa9df6ddb7c3925f9db32801a 100644
(file)
--- a/
meson.build
+++ b/
meson.build
@@
-48,7
+48,11
@@
if not get_option('disable_gst_libav')
endif
if not get_option('disable_gst_devtools')
+ if dependency('json-glib-1.0', required : false).found()
subprojects += ['gst-devtools']
+ else
+ message('WARNING: not building gst-devtools module, missing glib-json-1.0')
+ endif
endif
if not get_option('disable_gst_editing_services')