Skip to content
Snippets Groups Projects
Commit 4f360602 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

configure: unsilence the generic OpenGL header test

parent d247cf9f
No related branches found
No related tags found
No related merge requests found
......@@ -3002,6 +3002,7 @@ have_gl="no"
PKG_CHECK_MODULES([GL], [gl], [
have_gl="yes"
], [
AC_MSG_CHECKING([for OpenGL])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#ifdef _WIN32
# include <GL/glew.h>
......@@ -3018,6 +3019,7 @@ PKG_CHECK_MODULES([GL], [gl], [
GL_LIBS="-lopengl32"
])
])
AC_MSG_RESULT([${have_gl}])
])
AM_CONDITIONAL([HAVE_GL], [test "${have_gl}" = "yes"])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment