ruby-changes:6329
From: akr <ko1@a...>
Date: Thu, 3 Jul 2008 17:50:35 +0900 (JST)
Subject: [ruby-changes:6329] Ruby:r17845 (ruby_1_8, trunk): refine configure message of broken erfc of glibc-2.3 on IA64.
akr 2008-07-03 17:50:23 +0900 (Thu, 03 Jul 2008)
New Revision: 17845
Modified files:
branches/ruby_1_8/configure.in
trunk/configure.in
Log:
refine configure message of broken erfc of glibc-2.3 on IA64.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=17845
Index: configure.in
===================================================================
--- configure.in (revision 17844)
+++ configure.in (revision 17845)
@@ -704,7 +704,7 @@
# 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 comes with Debian GNU/Linux Etch on IA64, rb_broken_glibc_ia64_erfc,
+AC_CACHE_CHECK(for broken erfc of glibc-2.3 on IA64, rb_broken_glibc_ia64_erfc,
[AC_TRY_RUN([
#include <math.h>
int
Index: ruby_1_8/configure.in
===================================================================
--- ruby_1_8/configure.in (revision 17844)
+++ ruby_1_8/configure.in (revision 17845)
@@ -603,7 +603,7 @@
# 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 comes with Debian GNU/Linux Etch on IA64, rb_broken_glibc_ia64_erfc,
+AC_CACHE_CHECK(for broken erfc of glibc-2.3 on IA64, rb_broken_glibc_ia64_erfc,
[AC_TRY_RUN([
#include <math.h>
int
@@ -613,9 +613,9 @@
return 0;
}
],
- rb_broken_glibc_ia64_erfc=no,
- rb_broken_glibc_ia64_erfc=yes,
- rb_broken_glibc_ia64_erfc=no)])
+ 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
yes) ac_cv_func_erf=no;;
esac
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/