summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authornplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-19 19:12:29 +0000
committernplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-19 19:12:29 +0000
commitcb6ba13ba97d4c9d9b1f6fc841acda3b23eab0c2 (patch)
tree4bb2f1eb5278f564b42640302b56a969ac98237a /configure
parent2d3d563b1565de53238bd97a1bf884d142a5f072 (diff)
downloadmpv-cb6ba13ba97d4c9d9b1f6fc841acda3b23eab0c2.tar.bz2
mpv-cb6ba13ba97d4c9d9b1f6fc841acda3b23eab0c2.tar.xz
disable x11 gl support on osx
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21075 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 c50f45c810..f04a3fd0eb 100755
--- a/configure
+++ b/configure
@@ -4046,7 +4046,7 @@ echores "$_dga"
echocheck "OpenGL"
#Note: this test is run even with --enable-gl since we autodetect $_ld_gl
-if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
+if (test "$_x11" = yes || win32 && test "$_macosx" = no) && test "$_gl" != no ; then
cat > $TMPC << EOF
#include <GL/gl.h>
int main(void) { return 0; }