summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2018-12-17 12:30:27 +0200
committerSebastian Dröge <sebastian@centricular.com>2018-12-17 12:30:27 +0200
commit38be1fb2db9131640c0427cfb7fe4603fb3c6d29 (patch)
tree866b985137cf3ac3c0fd7792871784fcf7ac976d /ext
parent2e6510b9e2a0e8ed80cb8de0d294231261a0a8df (diff)
downloadgstreamer-plugins-bad-38be1fb2db9131640c0427cfb7fe4603fb3c6d29.tar.gz
meson: Add libsinc to the CFLAGS
Otherwise gst-i18n-plugin.h can't be found.
Diffstat (limited to 'ext')
-rw-r--r--ext/openal/meson.build2
-rw-r--r--ext/opencv/gsttemplatematch.cpp2
-rw-r--r--ext/opencv/meson.build2
-rw-r--r--ext/sndfile/meson.build2
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/openal/meson.build b/ext/openal/meson.build
index f0840b2a9..32fcfeb13 100644
--- a/ext/openal/meson.build
+++ b/ext/openal/meson.build
@@ -4,7 +4,7 @@ if openal_dep.found()
gstopenal = library('gstopenal',
'gstopenal.c', 'gstopenalsink.c', 'gstopenalsrc.c',
c_args: gst_plugins_bad_args,
- include_directories: [configinc],
+ include_directories: [configinc, libsinc],
dependencies: [gstaudio_dep, openal_dep],
install: true,
install_dir: plugins_install_dir,
diff --git a/ext/opencv/gsttemplatematch.cpp b/ext/opencv/gsttemplatematch.cpp
index a41e69ee0..b6d56de70 100644
--- a/ext/opencv/gsttemplatematch.cpp
+++ b/ext/opencv/gsttemplatematch.cpp
@@ -61,7 +61,7 @@
# include <config.h>
#endif
-#include "../../gst-libs/gst/gst-i18n-plugin.h"
+#include <gst/gst-i18n-plugin.h>
#include "gsttemplatematch.h"
#include <opencv2/imgproc.hpp>
#if (CV_MAJOR_VERSION >= 4)
diff --git a/ext/opencv/meson.build b/ext/opencv/meson.build
index a1a09b1ed..9900d8a65 100644
--- a/ext/opencv/meson.build
+++ b/ext/opencv/meson.build
@@ -104,7 +104,7 @@ if opencv_found
gstopencv_sources,
cpp_args : gst_plugins_bad_args + gstopencv_cargs + [ '-DGST_USE_UNSTABLE_API' ],
link_args : noseh_link_args,
- include_directories : [configinc],
+ include_directories : [configinc, libsinc],
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep, gstopencv_dep],
install : true,
install_dir : plugins_install_dir,
diff --git a/ext/sndfile/meson.build b/ext/sndfile/meson.build
index 9748626a1..91312febd 100644
--- a/ext/sndfile/meson.build
+++ b/ext/sndfile/meson.build
@@ -4,7 +4,7 @@ if sndfile_dep.found()
gstsndfile = library('gstsndfile',
'gstsf.c', 'gstsfdec.c', # 'gstsfsink.c', 'gstsfsrc.c',
c_args: gst_plugins_bad_args,
- include_directories: [configinc],
+ include_directories: [configinc, libsinc],
dependencies: [gstaudio_dep, gst_dep, sndfile_dep],
install: true,
install_dir: plugins_install_dir,