summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-19 09:24:53 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-19 09:24:53 +0000
commitc88228636a3377830dd95df705877b9ffaa78f8d (patch)
tree16a8303c575610ca92aae293c7779d8fb6d5c352 /configure.in
parent3955e22ba3261af2946d719ce57459af72525225 (diff)
downloadruby-c88228636a3377830dd95df705877b9ffaa78f8d.tar.gz
ruby-c88228636a3377830dd95df705877b9ffaa78f8d.tar.xz
ruby-c88228636a3377830dd95df705877b9ffaa78f8d.zip
merge revision(s) 18664:
* configure.in (rb_cv_broken_glibc_ia64_erfc): renamed from rb_broken_glibc_ia64_erfc. [ruby-core:18228] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@21668 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 136fe7c66..ae4b67c28 100644
--- a/configure.in
+++ b/configure.in
@@ -535,7 +535,7 @@ AC_CHECK_FUNCS(ftello)
# 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
@@ -545,10 +545,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