[前][次][番号順一覧][スレッド一覧]

ruby-changes:6969

From: akr <ko1@a...>
Date: Mon, 11 Aug 2008 15:16:19 +0900 (JST)
Subject: [ruby-changes:6969] Ruby:r18487 (trunk): * configure.in (rb_cv_broken_glibc_ia64_erfc): renamed from

akr	2008-08-11 15:11:55 +0900 (Mon, 11 Aug 2008)

  New Revision: 18487

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18487

  Log:
    * configure.in (rb_cv_broken_glibc_ia64_erfc): renamed from
      rb_broken_glibc_ia64_erfc.
      [ruby-core:18228]

  Modified files:
    trunk/ChangeLog
    trunk/configure.in

Index: configure.in
===================================================================
--- configure.in	(revision 18486)
+++ configure.in	(revision 18487)
@@ -732,7 +732,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-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 @@
    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
 
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 18486)
+++ ChangeLog	(revision 18487)
@@ -1,3 +1,9 @@
+Mon Aug 11 15:09:23 2008  Tanaka Akira  <akr@f...>
+
+	* 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@f...>
 
 	* transcode_data.h (rb_transcoding): rename fields.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]