From 528b6c3f6470cc24d6d5d39f0b573c76a74cc5c9 Mon Sep 17 00:00:00 2001 From: eban Date: Wed, 23 Jul 2003 14:09:52 +0000 Subject: * file.c (DOSISH): better Cygwin support. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'file.c') 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) { -- cgit v1.2.3