7cb8934
--- blender-2.78a/extern/glog/src/stacktrace_powerpc-inl.h.debug	2016-10-24 23:13:56.000000000 +0900
7cb8934
+++ blender-2.78a/extern/glog/src/stacktrace_powerpc-inl.h	2016-11-12 14:55:59.832015717 +0900
7cb8934
@@ -111,10 +111,10 @@
7cb8934
       result[n++] = *(sp+2);
7cb8934
 #elif defined(_CALL_SYSV)
7cb8934
       result[n++] = *(sp+1);
7cb8934
-#elif defined(__APPLE__) || (defined(__linux) && defined(__PPC64__))
7cb8934
+#elif defined(__APPLE__) || (defined(__linux__) && defined(__PPC64__))
7cb8934
       // This check is in case the compiler doesn't define _CALL_AIX/etc.
7cb8934
       result[n++] = *(sp+2);
7cb8934
-#elif defined(__linux)
7cb8934
+#elif defined(__linux__)
7cb8934
       // This check is in case the compiler doesn't define _CALL_SYSV.
7cb8934
       result[n++] = *(sp+1);
7cb8934
 #else