From ee4cb17b98fa5efe9c81f08743f3c165dd677547 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 1 Mar 2015 11:21:18 +0000 Subject: [PATCH] configure.in: restore convertible type * configure.in (RUBY_REPLACE_TYPE): restore convertible type from cached variable, so that configured results will be stable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49794 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index aecc325e2f..e5dd9fa3e8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Mar 1 20:21:16 2015 Nobuyoshi Nakada + + * configure.in (RUBY_REPLACE_TYPE): restore convertible type from + cached variable, so that configured results will be stable. + Sun Mar 1 18:10:34 2015 Nobuyoshi Nakada * configure.in (rb_cv_broken_memmem): check before adding the diff --git a/configure.in b/configure.in index 2824993da7..365538c2ae 100644 --- a/configure.in +++ b/configure.in @@ -1475,7 +1475,10 @@ AC_DEFUN([RUBY_REPLACE_TYPE], [dnl [ t=INT]) rb_cv_[$1]_convertible=${u}${t}]) - test "${AS_TR_SH(ac_cv_type_[$1])}" = "yes" && n="$1" + AS_CASE(["${rb_cv_[$1]_convertible}"], + [*LL], [n="long long"], + [*LONG], [n="long"], + [n="int"]) AS_CASE("${rb_cv_[$1]_convertible}", [U*], [u=+1], [u=-1]) AC_DEFINE_UNQUOTED(rb_[$1], $n) AC_DEFINE_UNQUOTED([SIGNEDNESS_OF_]AS_TR_CPP($1), $u)