summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-19 20:07:50 +0000
committerfaust3 <faust3@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-19 20:07:50 +0000
commit006ecfdc7e767f7d8e85be34ceb1daa5bb2507bb (patch)
treefd3be402845395ee6e91f21fe060c807318fbfc4
parent57e119d8beb85523fadab6cb76764c195f21bd4c (diff)
downloadmpv-006ecfdc7e767f7d8e85be34ceb1daa5bb2507bb.tar.bz2
mpv-006ecfdc7e767f7d8e85be34ceb1daa5bb2507bb.tar.xz
make vo_gl2 compile on cygwin, too
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10884 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure
index 3edb2a8e39..0072bddb41 100755
--- a/configure
+++ b/configure
@@ -2938,9 +2938,8 @@ fi
echocheck "OpenGL"
-cygwin && _gl=no
#Note: this test is run even with --enable-gl since we autodetect $_ld_gl
-if (test "$_x11" = yes || mingw32) && test "$_gl" != no ; then
+if (test "$_x11" = yes || mingw32 || cygwin) && test "$_gl" != no ; then
cat > $TMPC << EOF
#include <GL/gl.h>
int main(void) { return 0; }