summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-23 14:09:52 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-23 14:09:52 +0000
commit528b6c3f6470cc24d6d5d39f0b573c76a74cc5c9 (patch)
treeaa86347015e56d3890c1b26e4fbdb3a825ce3b08
parente96641be8e30f63d62944e76c2d6e4f078865dd7 (diff)
* file.c (DOSISH): better Cygwin support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--file.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 716f92331a..6c3c111047 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jul 23 23:06:59 2003 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * file.c (DOSISH): better Cygwin support.
+
Wed Jul 23 18:43:00 2003 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/erb.rb: import erb-2.0.4b1.
diff --git a/file.c b/file.c
index 1ef799c31c..f5fb2311d0 100644
--- a/file.c
+++ b/file.c
@@ -1549,7 +1549,7 @@ file_expand_path(fname, dname, result)
}
BUFCHECK(strlen(dir) > buflen);
strcpy(buf, dir);
-#ifdef DOSISH
+#if defined DOSISH || defined __CYGWIN__
for (p = buf; *p; p = CharNext(p)) {
if (*p == '\\') {
*p = '/';
@@ -1629,7 +1629,7 @@ file_expand_path(fname, dname, result)
strcpy(buf, dir);
free(dir);
}
-#ifdef DOSISH
+#if defined DOSISH || defined __CYGWIN__
if (isdirsep(*s)) {
/* specified full path, but not drive letter nor UNC */
/* we need to get the drive letter or UNC share name */
@@ -1677,7 +1677,7 @@ file_expand_path(fname, dname, result)
}
break;
case '/':
-#if defined DOSISH
+#if defined DOSISH || defined __CYGWIN__
case '\\':
#endif
b = ++s;
@@ -1689,7 +1689,7 @@ file_expand_path(fname, dname, result)
}
break;
case '/':
-#if defined DOSISH
+#if defined DOSISH || defined __CYGWIN__
case '\\':
#endif
if (s > b) {