summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorcharliesome <charliesome@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-28 14:23:25 +0000
committercharliesome <charliesome@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-28 14:23:25 +0000
commitaf35f2a61d8027df2e70012ae736f91ee0e41b85 (patch)
treefa349978c1ead289859a0ff7f9119a627d09a86a /hash.c
parent80b0c6ca3b15a621dbbe129f4770c7a2f404eebe (diff)
* configure.in: check for the whether crt_externs.h is present when compiling
for darwin (this header is missing in the iOS SDK) * eval_intern.h: check HAVE_CRT_EXTERNS_H before including crt_externs.h, if not defined, include missing/crt_externs.h instead * hash.c: ditto * missing/setproctitle.c: ditto * missing/crt_externs.h: declare _NSGetEnviron() function and define environ for iOS git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 68955b241c..cba71f948f 100644
--- a/hash.c
+++ b/hash.c
@@ -20,7 +20,11 @@
#include "probes.h"
#ifdef __APPLE__
-#include <crt_externs.h>
+# ifdef HAVE_CRT_EXTERNS_H
+# include <crt_externs.h>
+# else
+# include "missing/crt_externs.h"
+# endif
#endif
static VALUE rb_hash_s_try_convert(VALUE, VALUE);