summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-10-30 23:43:59 +0100
committerwm4 <wm4@nowhere>2013-11-02 19:05:58 +0100
commit78a57135f9aa8fd7d93a9a6226d73361947e0835 (patch)
tree0499d4f0a8bffa942f1cc486998ddd6ebbd30f98
parent09f00db14225c2649b0a36eb7da19e65ef788d34 (diff)
downloadmpv-78a57135f9aa8fd7d93a9a6226d73361947e0835.tar.bz2
mpv-78a57135f9aa8fd7d93a9a6226d73361947e0835.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.
-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