summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-10-30 23:43:59 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-10-30 23:59:43 +0100
commit55dca5b6a336c6014c79d327b07c1cafa6981d40 (patch)
tree86a0d3a3f272424a209c225990ea17aa003eff72 /video
parent2c48a16e991dd4597db8ada05fc1122038873676 (diff)
downloadmpv-55dca5b6a336c6014c79d327b07c1cafa6981d40.tar.bz2
mpv-55dca5b6a336c6014c79d327b07c1cafa6981d40.tar.xz
gl_common: osx: fix compilation with latest XQuartz RC
Looks the gl.h header in XQuartz is incompatible with the one in OS X 10.9.
Diffstat (limited to 'video')
-rw-r--r--video/out/gl_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_common.h b/video/out/gl_common.h
index beb18fb10d..ecff698ac8 100644
--- a/video/out/gl_common.h
+++ b/video/out/gl_common.h
@@ -37,7 +37,7 @@
#include "video/mp_image.h"
-#if defined(CONFIG_GL_COCOA) && !defined(CONFIG_GL_X11)
+#if defined(CONFIG_GL_COCOA)
#ifdef GL_VERSION_3_0
#include <OpenGL/gl3.h>
#else