mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-23 06:26:23 +00:00
gl/build: fix configure when --enable-cocoa is passed on OS X
https://bugzilla.gnome.org/show_bug.cgi?id=768553
This commit is contained in:
parent
8330f7aa26
commit
2ae16c2f68
1 changed files with 11 additions and 0 deletions
11
configure.ac
11
configure.ac
|
@ -789,6 +789,17 @@ case $host in
|
|||
CFLAGS=$old_CFLAGS
|
||||
|
||||
PKG_CHECK_MODULES(WAYLAND_EGL, wayland-client >= 1.0 wayland-cursor >= 1.0 wayland-egl >= 9.0, HAVE_WAYLAND_EGL=yes, HAVE_WAYLAND_EGL=no)
|
||||
|
||||
# OS X and iOS always have GL available
|
||||
case $host in
|
||||
*-darwin*)
|
||||
if test "x$HAVE_IOS" = "xyes"; then
|
||||
HAVE_GLES2=yes
|
||||
else
|
||||
HAVE_GL=yes
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue