diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-13 16:13:31 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-05-13 16:13:31 +0000 |
commit | 3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389 (patch) | |
tree | 3a84f886c14e2a9a8fe65c664b4f4805e2cbc2d4 /file.c | |
parent | a6dcd4ff38476c301f3385a3999fb6452bd462c7 (diff) | |
download | ruby-3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389.tar.gz ruby-3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389.tar.xz ruby-3d9582b7f1fe2647d0d68ab55ccc2223c7cbd389.zip |
support mingw32.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@688 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -371,7 +371,7 @@ eaccess(path, mode) const char *path; int mode; { -#ifndef NT +#ifdef S_IXGRP struct stat st; static int euid = -1; @@ -699,7 +699,7 @@ static VALUE test_sgid(obj, fname) VALUE obj, fname; { -#ifndef NT +#ifdef S_ISGID Check_SafeStr(fname); return check3rdbyte(RSTRING(fname)->ptr, S_ISGID); #else @@ -1013,7 +1013,7 @@ rb_file_s_utime(argc, argv) # else # include <sys/utime.h> # endif -# if defined(_MSC_VER) +# if defined(_MSC_VER) || defined __MINGW32__ # define utimbuf _utimbuf # endif # else @@ -1917,7 +1917,7 @@ static VALUE rb_stat_sgid(obj) VALUE obj; { -#ifndef NT +#ifdef S_ISGID if (get_stat(obj)->st_mode & S_ISGID) return Qtrue; #endif return Qfalse; |