diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | version.h | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Tue Oct 12 10:39:08 2010 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * configure.in (RUBY_MINGW32): canonicalize only on mingw. + Mon Oct 11 20:20:23 2010 NARUSE, Yui <naruse@ruby-lang.org> * lib/net/http.rb (HTTP.get): specify ASCII-8BIT as the result diff --git a/configure.in b/configure.in index 4e9f253847..2e0662a781 100644 --- a/configure.in +++ b/configure.in @@ -38,7 +38,7 @@ test "$rb_cv_mingw32" = yes && target_os="mingw32" AS_CASE(["$target_os"], [mingw*msvc], [ target_os="`echo ${target_os} | sed 's/msvc$//'`" ]) -AS_CASE(["$target_cpu"], [x86_64], [ +AS_CASE(["$target_cpu-$target_os"], [x86_64-mingw*], [ # canonicalize as like mswin version. see win32/setup.mak. target_cpu=x64 target_os="`echo ${target_os} | sed 's/32$/64/'`" @@ -1,11 +1,11 @@ #define RUBY_VERSION "1.9.3" -#define RUBY_RELEASE_DATE "2010-10-11" +#define RUBY_RELEASE_DATE "2010-10-12" #define RUBY_PATCHLEVEL -1 #define RUBY_BRANCH_NAME "trunk" #define RUBY_RELEASE_YEAR 2010 #define RUBY_RELEASE_MONTH 10 -#define RUBY_RELEASE_DAY 11 +#define RUBY_RELEASE_DAY 12 #include "ruby/version.h" |
