summaryrefslogtreecommitdiffstats
path: root/ruby.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-15 01:53:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-15 01:53:08 +0000
commit78685c1b067964a016c2938bf825f4e2b9d504a7 (patch)
tree079fc0c321ed4bd793f10b9113a5a6ee96d95c48 /ruby.c
parent0609ef3713d5c0eb296e98001a5eb9aaff6a0c82 (diff)
downloadruby-78685c1b067964a016c2938bf825f4e2b9d504a7.tar.gz
ruby-78685c1b067964a016c2938bf825f4e2b9d504a7.tar.xz
ruby-78685c1b067964a016c2938bf825f4e2b9d504a7.zip
* symbian/README.SYMBIAN: symbian support added. great appreciate
to <alexandre.zavorine at symbian.com>. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21513 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index 68d9fc739..461a4f2db 100644
--- a/ruby.c
+++ b/ruby.c
@@ -182,7 +182,7 @@ translate_char(char *p, int from, int to)
}
#endif
-#if defined _WIN32 || defined __CYGWIN__
+#if defined _WIN32 || defined __CYGWIN__ || defined __SYMBIAN32__
static VALUE
rubylib_mangled_path(const char *s, unsigned int l)
{
@@ -331,7 +331,7 @@ ruby_incpush_expand(const char *path)
ruby_push_include(path, expand_include_path);
}
-#if defined DOSISH || defined __CYGWIN__
+#if (defined DOSISH || defined __CYGWIN__) && !defined __SYMBIAN32__
#define LOAD_RELATIVE 1
#endif