From b35a261a79a411895c52a3e1a224f421f9c0f3c0 Mon Sep 17 00:00:00 2001 From: ocean Date: Fri, 24 Dec 2004 09:40:34 +0000 Subject: * win32/win32.[ch]: failed to compile on bcc32 (and probably wince) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ win32/win32.c | 2 ++ win32/win32.h | 6 +++++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8acfccd1d6..a92fadb11e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Dec 24 18:39:25 2004 Hirokazu Yamamoto + + * win32/win32.[ch]: failed to compile on bcc32 (and probably wince) + Fri Dec 24 02:52:52 2004 Nobuyoshi Nakada * io.c (io_reopen, rb_io_reopen): prohibit to change access mode for diff --git a/win32/win32.c b/win32/win32.c index f44b805ae6..5986ca5ea7 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -3322,6 +3322,7 @@ rb_w32_snprintf(char *buf, size_t size, const char *format, ...) return ret; } +#if !defined(__BORLANDC__) && !defined(_WIN32_WCE) int rb_w32_isatty(int fd) { @@ -3335,6 +3336,7 @@ rb_w32_isatty(int fd) } return 1; } +#endif // // Fix bcc32's stdio bug diff --git a/win32/win32.h b/win32/win32.h index a7995a083b..005e335e21 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -105,7 +105,6 @@ extern "C++" { #define eof() _eof() #define filelength(h) _filelength(h) #define mktemp(t) _mktemp(t) -#define perror(s) _perror(s) #define read(h, b, l) _read(h, b, l) #define tell(h) _tell(h) #define umask(m) _umask(m) @@ -125,8 +124,10 @@ extern "C++" { #define stat(path,st) rb_w32_stat(path,st) #undef execv #define execv(path,argv) do_aspawn(P_OVERLAY,path,argv) +#if !defined(__BORLANDC__) && !defined(_WIN32_WCE) #undef isatty #define isatty(h) rb_w32_isatty(h) +#endif #ifdef __MINGW32__ struct timezone { @@ -183,7 +184,10 @@ extern int do_spawn(int, char *); extern int do_aspawn(int, char *, char **); extern int kill(int, int); extern pid_t rb_w32_getpid(void); + +#if !defined(__BORLANDC__) && !defined(_WIN32_WCE) extern int rb_w32_isatty(int); +#endif #ifdef __BORLANDC__ extern FILE *rb_w32_fopen(const char *, const char *); -- cgit v1.2.3