Commit 25c43a8a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

configure: fix shell syntax (fixes #9571)

parent d976d9d0
...@@ -2987,16 +2987,17 @@ PKG_CHECK_MODULES([GL], [gl], [ ...@@ -2987,16 +2987,17 @@ PKG_CHECK_MODULES([GL], [gl], [
[#include <GL/gl.h>]], [ [#include <GL/gl.h>]], [
[int t0 = GL_TEXTURE0;]]) [int t0 = GL_TEXTURE0;]])
], [ ], [
have_gl="yes"
GL_CFLAGS="" GL_CFLAGS=""
AS_IF([test "${SYS}" = "mingw32"], [ AS_IF([test "${SYS}" != "mingw32"], [
have_gl="yes"
GL_LIBS="-lGL"
], [
AC_CHECK_HEADER([GL/glew.h], [ AC_CHECK_HEADER([GL/glew.h], [
have_gl="yes"
], [ ], [
have_gl="no" have_gl="no"
]) ])
GL_LIBS="-lopengl32" GL_LIBS="-lopengl32"
], [
GL_LIBS="-lGL"
]) ])
], [ ], [
have_gl="no" have_gl="no"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment