mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 04:52:28 +00:00
configure.ac: auto decision to include GL library fails
The part of the configure.ac that consist to check if we can include both GL and GLES2 at the same time is failing. Indeed, in the case NEED_GLES2=yes and NEED_OPENGL=auto, HAVE_OPENGL variable is updated whereas it should be HAVE_GL variable that has to be updated (HAVE_OPENGL variable is not used in the rest of the configure.ac). https://bugzilla.gnome.org/show_bug.cgi?id=739348 Signed-off-by: Vincent Abriou <vincent.abriou@st.com> Reviewed-by: Benjamin GAIGNARD <benjamin.gaignard@linaro.org>
This commit is contained in:
parent
916b954315
commit
9f69bcbfe5
1 changed files with 1 additions and 1 deletions
|
@ -886,7 +886,7 @@ if test "x$HAVE_GL" = "xyes" -a "x$HAVE_GLU" = "xyes" -a "x$HAVE_GLES2" = "xyes"
|
|||
AC_MSG_ERROR([Cannot seem to include both GL and GLES2 headers. Try disabling one API])
|
||||
fi
|
||||
AC_MSG_WARN([Disabling Desktop GL support])
|
||||
HAVE_OPENGL=no
|
||||
HAVE_GL=no
|
||||
else
|
||||
AC_MSG_WARN([Disabling GL|ES 2.0 support])
|
||||
HAVE_GLES2=no
|
||||
|
|
Loading…
Reference in a new issue