diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-06-30 09:07:54 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-06-30 09:07:54 +0000 |
| commit | 9ec3ba46f96c5cff36a384c93523b4be94cf030c (patch) | |
| tree | 313c6275aa149d30f7e443092f09403268d2f2fb | |
| parent | 35a58a431f981df50f318e51307277a603ab259a (diff) | |
| download | ruby-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-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | version.h | 4 |
3 files changed, 9 insertions, 2 deletions
@@ -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;; @@ -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 |
