summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/Stg.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/includes/Stg.h b/includes/Stg.h
index 6cbfeb45e5..32e838090b 100644
--- a/includes/Stg.h
+++ b/includes/Stg.h
@@ -95,7 +95,11 @@
// __attribute__((gnu_inline)). So when we don't have this, we use
// ordinary static inline.
//
-#if defined(__GNUC_GNU_INLINE__)
+// Apple's gcc defines __GNUC_GNU_INLINE__ without providing
+// gnu_inline, so we exclude MacOS X and fall through to the safe
+// version.
+//
+#if defined(__GNUC_GNU_INLINE__) && !defined(__APPLE__)
# if defined(KEEP_INLINES)
# define EXTERN_INLINE inline
# else