aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-10 20:57:49 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-10 20:57:49 +0000
commit60f398691414ad630437b9b79637366159ced660 (patch)
treeb0c216ec65a825ababf2696e12ef40a0120f8986 /configure.in
parentaedfee01427af729103091c57f89b60cdf955035 (diff)
downloadruby-60f398691414ad630437b9b79637366159ced660.tar.gz
* configure.in (int128_t): don't check HAVE_XXX (for example
HAVE___INT128) because RUBY_CHECK_SIZEOF() don't define it for config.h and use of $ac_cv_sizeof___int128 alternates the check. (and don't need to define because users shouldn't know that) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index 06b631bb43..4f371e51f3 100644
--- a/configure.in
+++ b/configure.in
@@ -2038,10 +2038,6 @@ if test "${rb_cv_type_$1}" != no; then
t=AS_TR_SH($t)
])
cond=
- AS_CASE([$t], [__int*], [
- cond="defined HAVE_"AS_TR_CPP($t)
- echo "@%:@if $cond" >> confdefs.h
- ])
AC_DEFINE([HAVE_]AS_TR_CPP($1), 1)
if test "${rb_cv_type_$1}" = yes; then
m4_bmatch([$2], [^[1-9][0-9]*$], [AC_CHECK_SIZEOF([$1], 0, [AC_INCLUDES_DEFAULT([$4])])],
@@ -2050,9 +2046,6 @@ if test "${rb_cv_type_$1}" != no; then
AC_DEFINE_UNQUOTED($1, [$rb_cv_type_$1])
AC_DEFINE_UNQUOTED([SIZEOF_]AS_TR_CPP($1), [SIZEOF_]AS_TR_CPP([$rb_cv_type_$1]))
fi
- AS_IF([test -n "$cond"], [
- echo "@%:@endif /* $cond */" >> confdefs.h
- ])
fi
AS_VAR_POPDEF([cond])dnl
AS_VAR_POPDEF([t])dnl