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

ruby-changes:16430

From: yugui <ko1@a...>
Date: Thu, 24 Jun 2010 10:58:46 +0900 (JST)
Subject: [ruby-changes:16430] Ruby:r28415 (ruby_1_9_2): merges r28280 from trunk into ruby_1_9_2.

yugui	2010-06-24 10:58:12 +0900 (Thu, 24 Jun 2010)

  New Revision: 28415

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

  Log:
    merges r28280 from trunk into ruby_1_9_2.
    --
    * include/ruby/missing.h (isnan): fix compilation error on OpenBSD.

  Modified files:
    branches/ruby_1_9_2/ChangeLog
    branches/ruby_1_9_2/include/ruby/missing.h

Index: ruby_1_9_2/include/ruby/missing.h
===================================================================
--- ruby_1_9_2/include/ruby/missing.h	(revision 28414)
+++ ruby_1_9_2/include/ruby/missing.h	(revision 28415)
@@ -112,8 +112,10 @@
 # endif
 #endif
 
-#ifndef HAVE_ISNAN
+#ifndef isnan
+# ifndef HAVE_ISNAN
 RUBY_EXTERN int isnan(double);
+# endif
 #endif
 
 /*
Index: ruby_1_9_2/ChangeLog
===================================================================
--- ruby_1_9_2/ChangeLog	(revision 28414)
+++ ruby_1_9_2/ChangeLog	(revision 28415)
@@ -1,3 +1,7 @@
+Fri Jun 11 22:59:31 2010  Tanaka Akira  <akr@f...>
+
+	* include/ruby/missing.h (isnan): fix compilation error on OpenBSD.
+
 Thu Jun 24 05:44:27 2010  Nobuyoshi Nakada  <nobu@r...>
 
 	* marshal.c (struct dump_arg, struct load_arg): merge taint and

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

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