From d013a797a693b063d528cefdcdf9a23de9084e40 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 11 Aug 2008 06:11:55 +0000 Subject: * 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/trunk@18487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- configure.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 083babbf9..bd38c2b8b 100644 --- a/configure.in +++ b/configure.in @@ -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 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 -- cgit