1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in (rb_cv_broken_glibc_ia64_erfc): renamed from

rb_broken_glibc_ia64_erfc.
  [ruby-core:18228]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-08-11 06:11:55 +00:00
parent cc0114b6d0
commit 36dd9a2221
2 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,9 @@
Mon Aug 11 15:09:23 2008 Tanaka Akira <akr@fsij.org>
* configure.in (rb_cv_broken_glibc_ia64_erfc): renamed from
rb_broken_glibc_ia64_erfc.
[ruby-core:18228]
Mon Aug 11 10:04:34 2008 Tanaka Akira <akr@fsij.org>
* transcode_data.h (rb_transcoding): rename fields.

View file

@ -732,7 +732,7 @@ AC_FUNC_MEMCMP
# http://sources.redhat.com/ml/libc-hacker/2005-08/msg00008.html
# Debian GNU/Linux Etch's libc6.1 2.3.6.ds1-13etch5 has this problem.
# Debian GNU/Linux Lenny's libc6.1 2.7-10 has no problem.
AC_CACHE_CHECK(for broken erfc of glibc-2.3.6 on IA64, rb_broken_glibc_ia64_erfc,
AC_CACHE_CHECK(for broken erfc of glibc-2.3.6 on IA64, rb_cv_broken_glibc_ia64_erfc,
[AC_TRY_RUN([
#include <math.h>
int
@ -742,10 +742,10 @@ main()
return 0;
}
],
rb_broken_glibc_ia64_erfc=no,
rb_broken_glibc_ia64_erfc=yes,
rb_broken_glibc_ia64_erfc=no)])
case $rb_broken_glibc_ia64_erfc in
rb_cv_broken_glibc_ia64_erfc=no,
rb_cv_broken_glibc_ia64_erfc=yes,
rb_cv_broken_glibc_ia64_erfc=no)])
case $rb_cv_broken_glibc_ia64_erfc in
yes) ac_cv_func_erf=no;;
esac