summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-21 17:36:39 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-21 17:36:39 +0000
commit738e5816b9c0fca7472d9b727e050c2be291a7d4 (patch)
treef35e5c9e13c6404fb1e023ea1965491ecbcdd44d /configure
parent84cbc3b50ce95ef1de66d724d6a4cb9f193af6eb (diff)
downloadmpv-738e5816b9c0fca7472d9b727e050c2be291a7d4.tar.bz2
mpv-738e5816b9c0fca7472d9b727e050c2be291a7d4.tar.xz
Fix SVN r21075, it completely disabled OpenGL in almost all cases.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21145 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 3b378a0f95..a545e2cb3a 100755
--- a/configure
+++ b/configure
@@ -4018,7 +4018,7 @@ echores "$_dga"
echocheck "OpenGL"
#Note: this test is run even with --enable-gl since we autodetect linker flags
-if (test "$_x11" = yes || win32 && test "$_macosx" = no) && test "$_gl" != no ; then
+if (test "$_x11" = yes || win32 && test "$_macosx" != yes) && test "$_gl" != no ; then
cat > $TMPC << EOF
#include <GL/gl.h>
int main(void) { return 0; }