* configure.in: Fix incorrectly detected x86_64-w64-mingw32 due

canonalization of target_os. Bug #3889 [ruby-core:32634]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
luislavena 2011-01-21 00:18:20 +00:00
Родитель 7fd0d4a4d3
Коммит 89bd00d804
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Fri Jan 21 09:17:00 2011 Luis Lavena <luislavena@gmail.com>
* configure.in: Fix incorrectly detected x86_64-w64-mingw32 due
canonalization of target_os. Bug #3889 [ruby-core:32634]
Thu Jan 20 23:44:00 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* configure.in: Fix rb_cv_va_args_macro was broken. We are using

Просмотреть файл

@ -39,9 +39,7 @@ AS_CASE(["$target_os"], [mingw*msvc], [
target_os="`echo ${target_os} | sed 's/msvc$//'`"
])
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/'`"
])
])