summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-30 09:07:54 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-30 09:07:54 +0000
commit9ec3ba46f96c5cff36a384c93523b4be94cf030c (patch)
tree313c6275aa149d30f7e443092f09403268d2f2fb
parent35a58a431f981df50f318e51307277a603ab259a (diff)
downloadruby-9ec3ba46f96c5cff36a384c93523b4be94cf030c.tar.gz
ruby-9ec3ba46f96c5cff36a384c93523b4be94cf030c.tar.xz
ruby-9ec3ba46f96c5cff36a384c93523b4be94cf030c.zip
* configure.in (seekdir, telldir): add ac_cv_func_telldir=yes,
ac_cv_func_seekdir=yes for MinGW. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2613 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
-rw-r--r--version.h4
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 3fd1b17aa..1d0cfe46a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Jun 30 17:05:29 2002 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * configure.in (seekdir, telldir): add ac_cv_func_telldir=yes,
+ ac_cv_func_seekdir=yes for MinGW.
+
Sat Jun 29 01:43:32 2002 NAKAMURA Usaku <usa@ruby-lang.org>
* io.c (pipe_finalize, pipe_popen): two-way pipe support for win32.
diff --git a/configure.in b/configure.in
index 10e3c5575..7ce581d79 100644
--- a/configure.in
+++ b/configure.in
@@ -221,6 +221,8 @@ mingw*) LIBS="-lwsock32 -lmsvcrt $LIBS"
ac_cv_func_times=yes
ac_cv_func_waitpid=yes
ac_cv_func_vsnprintf=yes
+ ac_cv_func_seekdir=yes
+ ac_cv_func_telldir=yes
;;
os2_emx*) LIBS="-lm $LIBS"
ac_cv_lib_dir_opendir=no;;
diff --git a/version.h b/version.h
index deb44eaa3..44ca9af12 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.2"
-#define RUBY_RELEASE_DATE "2002-06-29"
+#define RUBY_RELEASE_DATE "2002-06-30"
#define RUBY_VERSION_CODE 172
-#define RUBY_RELEASE_CODE 20020629
+#define RUBY_RELEASE_CODE 20020630