]> git.sesse.net Git - movit/commitdiff
Check for __APPLE__ instead of __DARWIN__.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 15 Jan 2015 21:47:29 +0000 (22:47 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 15 Jan 2015 21:47:29 +0000 (22:47 +0100)
Fixes compile with recent epoxy. Bug report and suggestion
by Dan Dennedy.

util.cpp

index 01787f013e0a4c70817be2ccf49743cddb7bd254..579efb35409d4a17ddc22838ce3dbcec4c82fc92 100644 (file)
--- a/util.cpp
+++ b/util.cpp
@@ -9,7 +9,7 @@
 #include "init.h"
 #include "util.h"
 
-#if defined(__DARWIN__)
+#if defined(__APPLE__)
 #include <OpenGL/OpenGL.h>
 #elif defined(WIN32)
 #include <epoxy/wgl.h>
@@ -256,7 +256,7 @@ unsigned next_power_of_two(unsigned v)
 
 void *get_gl_context_identifier()
 {
-#if defined(__DARWIN__)
+#if defined(__APPLE__)
        return (void *)CGLGetCurrentContext();
 #elif defined(WIN32)
        return (void *)wglGetCurrentContext();