summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-02 16:37:45 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-02 16:37:45 +0000
commitc9f2a3636c86b908878a27a05c73b7f939d6f732 (patch)
tree90834071e7e3f9a446d34422e0186cc0dc6f908b /configure
parent7a3fc5ad5afaaa7cd39432c8189549a467975160 (diff)
downloadmpv-c9f2a3636c86b908878a27a05c73b7f939d6f732.tar.bz2
mpv-c9f2a3636c86b908878a27a05c73b7f939d6f732.tar.xz
Change OpenGL support to work on unmodified MinGW64
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27879 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index af73e6e5cc..329e0a7572 100755
--- a/configure
+++ b/configure
@@ -4179,11 +4179,11 @@ echocheck "OpenGL"
#Note: this test is run even with --enable-gl since we autodetect linker flags
if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
cat > $TMPC << EOF
-#include <GL/gl.h>
#ifdef GL_WIN32
#include <windows.h>
-#include <GL/glext.h>
+#include <GL/gl.h>
#else
+#include <GL/gl.h>
#include <X11/Xlib.h>
#include <GL/glx.h>
#endif