summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2018-11-10 12:34:36 +0000
committerTim-Philipp Müller <tim@centricular.com>2018-11-10 12:35:30 +0000
commit91b6b98fdf70b910d2f09ed49136e68597ad6d8e (patch)
treea99789bfb6a7e8686e4b85b912510b99ee31640b
parent06b945df2f222840215badbb16b72acb7eee4634 (diff)
downloadgstreamer-plugins-base-91b6b98fdf70b910d2f09ed49136e68597ad6d8e.tar.gz
meson: fix backported gl patch
compat_includes only exists in master. Fixes #507
-rw-r--r--gst-libs/gst/gl/meson.build8
1 files changed, 2 insertions, 6 deletions
diff --git a/gst-libs/gst/gl/meson.build b/gst-libs/gst/gl/meson.build
index bce7b337b..e7e9d066d 100644
--- a/gst-libs/gst/gl/meson.build
+++ b/gst-libs/gst/gl/meson.build
@@ -418,14 +418,10 @@ if need_platform_egl != 'no'
egl_dep = cc.find_library('EGL', required : false)
endif
- if egl_dep.found() and not cc.has_header('EGL/egl.h',
- dependencies : egl_dep,
- include_directories : compat_includes)
+ if egl_dep.found() and not cc.has_header('EGL/egl.h', dependencies : egl_dep)
egl_dep = unneeded_dep
endif
- if egl_dep.found() and not cc.has_header('EGL/eglext.h',
- dependencies : egl_dep,
- include_directories : compat_includes)
+ if egl_dep.found() and not cc.has_header('EGL/eglext.h', dependencies : egl_dep)
egl_dep = unneeded_dep
endif