summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 06:53:24 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-13 06:53:24 +0000
commit0d242ac61a3a55e82a417d30940d2cc63148a822 (patch)
tree86405e8db2f92148f19d0c8bd95a01dd2c702976 /string.c
parent7b8e762afa1118c1758637a40277bc04206ab98e (diff)
* string.c: Apply a temporary fix to fix build on OS X. A real
fix will follow later. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 41e950d17d..e72becfbdc 100644
--- a/string.c
+++ b/string.c
@@ -43,7 +43,7 @@
VALUE rb_cString;
VALUE rb_cSymbol;
-#ifdef __GNUC__
+#if defined(__GNUC__) && !(defined(__APPLE__) && (defined(__MACH__) || defined(__DARWIN__)))
#define alias_func(old_prot, new_name, args) \
VALUE old_prot __attribute__((alias(#new_name)));
#else