summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-20 10:25:11 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-20 10:25:11 +0000
commit8d8af5225d0e01e2c433b49d8d477c641bace1a3 (patch)
tree55ebb8e5dcaa39780659666972ae71b4d96b992c
parent75c89b7eefd32e609b8141541a3cc22bb1c5d6f7 (diff)
* configure.in (__NO_ISOCEXT): add for mingw-runtime 2.0-2.
* configure.in (__MSVCRT__): removed because it is defined in the GCC specs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2587 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
-rw-r--r--version.h4
3 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 157f9f6e13..7adbde50d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,11 @@ Thu Jun 20 17:10:27 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* lib/ftool.rb (BUFSIZE): tuning, set buffer length to 8192.
+ * configure.in (__NO_ISOCEXT): add for mingw-runtime 2.0-2.
+
+ * configure.in (__MSVCRT__): removed because it is defined
+ in the GCC specs.
+
Wed Jun 19 14:46:18 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* ext/extmk.rb, lib/mkmf.rb (xsystem): open the log file if xsystem
diff --git a/configure.in b/configure.in
index 08739d5926..10e3c5575d 100644
--- a/configure.in
+++ b/configure.in
@@ -1062,7 +1062,7 @@ case "$target_os" in
CCDLFLAGS=-DUSEIMPORTLIB ;;
mingw*)
AC_LIBOBJ([win32])
- CFLAGS="-DNT -D__MSVCRT__ $CFLAGS"
+ CFLAGS="-DNT -D__NO_ISOCEXT $CFLAGS"
CCDLFLAGS=-DIMPORT ;;
esac
;;
diff --git a/version.h b/version.h
index 2bc2589380..3f6b2cb146 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.2"
-#define RUBY_RELEASE_DATE "2002-06-19"
+#define RUBY_RELEASE_DATE "2002-06-20"
#define RUBY_VERSION_CODE 172
-#define RUBY_RELEASE_CODE 20020619
+#define RUBY_RELEASE_CODE 20020620