[vlc-commits] configure: unsilence the generic OpenGL header test

Rémi Denis-Courmont git at videolan.org
Mon Dec 19 23:18:57 CET 2016


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Dec 20 00:16:17 2016 +0200| [4f360602bd4f7ba017b9869c05fa469ee526f81e] | committer: Rémi Denis-Courmont

configure: unsilence the generic OpenGL header test

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4f360602bd4f7ba017b9869c05fa469ee526f81e
---

 configure.ac | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configure.ac b/configure.ac
index 239e21a..83cfb1c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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"])
 



More information about the vlc-commits mailing list