summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-05 10:05:08 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-01-05 10:05:08 +0000
commit4f092ec3d02f5e50ab020eb8a41e092e46aedc38 (patch)
tree4324c57874d3ddc94ca3cf28b34d75ffa5eb59f1
parent5eb861ec37b5ef2b905a81c973864cd59f9fac58 (diff)
* win32/win32.c (ioinfo): VC++8 support, forgotten to commit.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9795 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--win32/win32.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f3b87b59e5..a3a8693476 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jan 5 19:03:09 2006 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * win32/win32.c (ioinfo): VC++8 support, forgotten to commit.
+
Sun Jan 1 17:07:59 2006 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* win32/win32.c (rb_w32_seekdir): should not segfault even if passed
diff --git a/win32/win32.c b/win32/win32.c
index ef6886af2b..79e39b6e2b 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1582,6 +1582,10 @@ typedef struct {
char pipech2[2];
#endif
#endif
+#if _MSC_VER >= 1400
+ char textmode;
+ char pipech2[2];
+#endif
} ioinfo;
#if !defined _CRTIMP || defined __MINGW32__