mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
configure: Make sure to try window-system-agnostic EGL if nothing was auto-detected
This commit is contained in:
parent
0d54e5857f
commit
f16e70e4ca
1 changed files with 3 additions and 2 deletions
|
@ -489,12 +489,12 @@ if test x"$EGL_WINDOW_SYSTEM" = x"auto"; then
|
|||
fi
|
||||
|
||||
if test x"$EGL_WINDOW_SYSTEM" = x"auto"; then
|
||||
EGL_WINDOW_SYSTEM="none"
|
||||
EGL_WINDOW_SYSTEM="auto"
|
||||
fi
|
||||
fi
|
||||
|
||||
case "$EGL_WINDOW_SYSTEM" in
|
||||
x11)
|
||||
x11|auto)
|
||||
PKG_CHECK_MODULES(EGL, egl, HAVE_EGL="yes", [
|
||||
HAVE_EGL="no"
|
||||
old_LIBS=$LIBS
|
||||
|
@ -516,6 +516,7 @@ case "$EGL_WINDOW_SYSTEM" in
|
|||
CFLAGS=$old_CFLAGS
|
||||
])
|
||||
|
||||
dnl X11 specific part, above is auto and X11
|
||||
if test x"$HAVE_EGL" = x"yes" -a x"$EGL_WINDOW_SYSTEM" = x"x11"; then
|
||||
if test x"$HAVE_X11" != x"yes"; then
|
||||
AC_MSG_ERROR([libX11 not found and is required for EGL X11 window system])
|
||||
|
|
Loading…
Reference in a new issue