build: emotion: fix lookup of gstreamer 0.10 dependency
authorStefan Schmidt <s.schmidt@samsung.com>
Wed, 19 Jun 2019 08:58:42 +0000 (10:58 +0200)
committerJongmin Lee <jm105.lee@samsung.com>
Wed, 26 Jun 2019 01:39:04 +0000 (10:39 +0900)
The pkg-config file for the 0.10 series of gstreamer is called
gstreamer-0.10.pc and we need to correct name in the dependency check
here to find it. Improving our CI coverage does spot bugs. :-)

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D9114

src/modules/emotion/gstreamer/meson.build

index 4f5fb15..e3e69e5 100644 (file)
@@ -6,7 +6,7 @@ generic_src = files([
   'emotion_sink.c'
 ])
 
-generic_deps = [dependency('gstreamer-0.1')]
+generic_deps = [dependency('gstreamer-0.10')]
 
 shared_module(emotion_loader,
     generic_src,