From dba42e07b5d6d2d25305f517c8b749dc2fcf6975 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 9 Sep 2002 14:48:21 +0000 Subject: [PATCH] * win32/win32.h (S_I?USR): define only if not mingw32. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2831 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ win32/win32.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 90e1abc82a..3fd2ac9854 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Sep 9 23:43:33 2002 WATANABE Hirofumi + + * win32/win32.h (S_I?USR): define only if not mingw32. + Mon Sep 9 20:41:03 2002 NAKAMURA Usaku * win32/win32.c (do_spawn): fix the bug which the environment variables diff --git a/win32/win32.h b/win32/win32.h index 8ea735dfe0..42ef1800da 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -227,7 +227,7 @@ extern int isinf(double); extern int isnan(double); -#ifndef S_IRUSR +#if !defined S_IRUSR && !defined __MINGW32__ #define S_IRUSR 0400 #endif #ifndef S_IRGRP @@ -237,7 +237,7 @@ extern int isnan(double); #define S_IROTH 0004 #endif -#ifndef S_IWUSR +#if !defined S_IWUSR && !defined __MINGW32__ #define S_IWUSR 0200 #endif #ifndef S_IWGRP @@ -247,7 +247,7 @@ extern int isnan(double); #define S_IWOTH 0002 #endif -#ifndef S_IXUSR +#if !defined S_IXUSR && !defined __MINGW32__ #define S_IXUSR 0100 #endif #ifndef S_IXGRP