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

ruby-changes:5217

From: nobu <ko1@a...>
Date: Sat, 31 May 2008 15:00:55 +0900 (JST)
Subject: [ruby-changes:5217] Ruby:r16712 (trunk): * include/ruby/ruby.h: renamed include guard.

nobu	2008-05-31 14:55:34 +0900 (Sat, 31 May 2008)

  New Revision: 16712

  Modified files:
    trunk/include/ruby/ruby.h
    trunk/version.h

  Log:
    * include/ruby/ruby.h: renamed include guard.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/include/ruby/ruby.h?r1=16712&r2=16711&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/version.h?r1=16712&r2=16711&diff_format=u

Index: include/ruby/ruby.h
===================================================================
--- include/ruby/ruby.h	(revision 16711)
+++ include/ruby/ruby.h	(revision 16712)
@@ -1,18 +1,18 @@
 /**********************************************************************
 
-  ruby.h -
+  ruby/ruby.h -
 
   $Author$
   created at: Thu Jun 10 14:26:32 JST 1993
 
-  Copyright (C) 1993-2007 Yukihiro Matsumoto
+  Copyright (C) 1993-2008 Yukihiro Matsumoto
   Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
   Copyright (C) 2000  Information-technology Promotion Agency, Japan
 
 **********************************************************************/
 
-#ifndef RUBY_H
-#define RUBY_H 1
+#ifndef RUBY_RUBY_H
+#define RUBY_RUBY_H 1
 
 #if defined(__cplusplus)
 extern "C" {
@@ -21,10 +21,12 @@
 #endif
 #endif
 
+#ifndef RUBY_LIB
 #include "ruby/config.h"
 #ifdef RUBY_EXTCONF_H
 #include RUBY_EXTCONF_H
 #endif
+#endif
 
 #define NORETURN_STYLE_NEW 1
 #ifndef NORETURN
@@ -1066,4 +1068,4 @@
 #endif
 }  /* extern "C" { */
 #endif
-#endif /* RUBY_H */
+#endif /* RUBY_RUBY_H */
Index: version.h
===================================================================
--- version.h	(revision 16711)
+++ version.h	(revision 16712)
@@ -1,7 +1,7 @@
 #define RUBY_VERSION "1.9.0"
-#define RUBY_RELEASE_DATE "2008-05-30"
+#define RUBY_RELEASE_DATE "2008-05-31"
 #define RUBY_VERSION_CODE 190
-#define RUBY_RELEASE_CODE 20080530
+#define RUBY_RELEASE_CODE 20080531
 #define RUBY_PATCHLEVEL 0
 
 #define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
 #define RUBY_VERSION_TEENY 0
 #define RUBY_RELEASE_YEAR 2008
 #define RUBY_RELEASE_MONTH 5
-#define RUBY_RELEASE_DAY 30
+#define RUBY_RELEASE_DAY 31
 
 #ifdef RUBY_EXTERN
 RUBY_EXTERN const char ruby_version[];

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

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