summaryrefslogtreecommitdiff
path: root/ext/openal
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/openal
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/openal')
-rw-r--r--ext/openal/meson.build2
1 files changed, 1 insertions, 1 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,