diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-21 17:36:39 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-21 17:36:39 +0000 |
commit | 738e5816b9c0fca7472d9b727e050c2be291a7d4 (patch) | |
tree | f35e5c9e13c6404fb1e023ea1965491ecbcdd44d /configure | |
parent | 84cbc3b50ce95ef1de66d724d6a4cb9f193af6eb (diff) |
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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |