summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-02-20 12:11:39 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-02-20 12:11:49 +0000
commit2cb14577be46032682cdfb6c150da2a1589c6f05 (patch)
treed1769200f983bab86217dc1965eb4eb7d47f80a7
parent8ae9404ff06d4d9a1e95c3bd1e77ab2bc34bc309 (diff)
downloadgstreamer-plugins-bad-2cb14577be46032682cdfb6c150da2a1589c6f05.tar.gz
meson: fix multi-line string
https://bugzilla.gnome.org/show_bug.cgi?id=793629
-rw-r--r--gst-libs/gst/gl/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/gl/meson.build b/gst-libs/gst/gl/meson.build
index f3b14e713..7e49f588a 100644
--- a/gst-libs/gst/gl/meson.build
+++ b/gst-libs/gst/gl/meson.build
@@ -540,8 +540,8 @@ if need_platform_wgl != 'no' and need_win_win32 != 'no'
gdi_dep = cc.find_library('gdi32', required : false)
# FIXME: Revert back to has_header once it gains prefix support
wglext_h = cc.has_header_symbol('GL/wglext.h', 'WGL_WGLEXT_VERSION',
- prefix : '#include <windows.h>
- #include <GL/gl.h>')
+ prefix : '''#include <windows.h>
+ #include <GL/gl.h>''')
if wglext_h and gdi_dep.found() and gl_dep.found()
gl_platform_deps += gdi_dep