mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
gl/win32: fix detection of GL/wglext.h
Was resulting in 'present but cannot be compiled' errors
This commit is contained in:
parent
14e993e745
commit
21ea26abbe
1 changed files with 1 additions and 1 deletions
|
@ -717,7 +717,7 @@ case $host in
|
|||
LIBS="$LIBS -lgdi32"
|
||||
AG_GST_CHECK_LIBHEADER(GL, opengl32, glTexImage2D,, GL/gl.h)
|
||||
AG_GST_CHECK_LIBHEADER(GLU, glu32, gluSphere,, GL/glu.h)
|
||||
AC_CHECK_HEADER(GL/wglext.h, HAVE_WGLEXT="yes", HAVE_WGLEXT="no")
|
||||
AC_CHECK_HEADER(GL/wglext.h, HAVE_WGLEXT="yes", HAVE_WGLEXT="no", [#include <GL/gl.h>])
|
||||
if test "x$HAVE_WGLEXT" = "xyes"; then
|
||||
HAVE_GL=yes
|
||||
HAVE_GLU=yes
|
||||
|
|
Loading…
Reference in a new issue