From ce42f29afe5ec0210f763da7eb5a91c83e7ec34a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Tue, 26 Jul 2011 20:05:14 +0300 Subject: [PATCH] Win32: do not enable glwin32 if GL/glext.h is missing (GL/gl.h ought to be present if GL/glext.h is) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 128673d98d..ab10e113be 100644 --- a/configure.ac +++ b/configure.ac @@ -3341,7 +3341,7 @@ then VLC_ADD_LIBS([directx],[-lgdi32]) ],[AC_MSG_ERROR([Cannot find DirectX headers!])] ) - AC_CHECK_HEADERS(GL/gl.h, + AC_CHECK_HEADERS(GL/glext.h, [ VLC_ADD_PLUGIN([glwin32]) VLC_ADD_LIBS([glwin32],[-lopengl32 -lgdi32]) ])