1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ruby.c: use translate_char() on Cygwin.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5491 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2004-01-18 11:59:43 +00:00
parent bf08ec6575
commit c5c450cded
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Sun Jan 18 20:47:35 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* ruby.c: use translate_char() on Cygwin.
Sun Jan 18 02:33:26 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* defines.h (_WIN32): undef _WIN32 on Cygwin before defining DOSISH.

6
ruby.c
View file

@ -212,7 +212,7 @@ ruby_incpush(path)
#define LOAD_RELATIVE 1
#endif
#ifdef DOSISH
#if defined DOSISH || defined __CYGWIN__
static inline void translate_char _((char *, int, int));
static inline void
@ -260,7 +260,7 @@ ruby_init_loadpath()
#endif
libpath[FILENAME_MAX] = '\0';
#ifdef DOSISH
#if defined DOSISH || defined __CYGWIN__
translate_char(libpath, '\\', '/');
#endif
p = strrchr(libpath, '/');
@ -755,7 +755,7 @@ proc_options(argc, argv)
script = ruby_sourcefile = rb_source_filename(script);
script_node = NEW_NEWLINE(0);
}
#ifdef DOSISH
#if defined DOSISH || defined __CYGWIN__
translate_char(script, '\\', '/');
#endif
argc--; argv++;