Commit abf5bf99 authored by Adrien Maglo's avatar Adrien Maglo

OpenGL: Set $GL_LIBS to "-lopengl32" for the Windows case.

parent fcb251b6
...@@ -2941,7 +2941,11 @@ PKG_CHECK_MODULES([GL], [gl], [ ...@@ -2941,7 +2941,11 @@ PKG_CHECK_MODULES([GL], [gl], [
AC_CHECK_HEADER([GL/gl.h], [ AC_CHECK_HEADER([GL/gl.h], [
have_gl="yes" have_gl="yes"
GL_CFLAGS="" GL_CFLAGS=""
GL_LIBS="-lGL" AS_IF([test "${SYS}" = "mingw32"], [
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