1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-26 09:02:38 +00:00

disable x11 gl support on osx

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21075 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nplourde 2006-11-19 19:12:29 +00:00
parent 2d3d563b15
commit cb6ba13ba9

2
configure vendored
View File

@ -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; }