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

ruby-changes:7280

From: nobu <ko1@a...>
Date: Sun, 24 Aug 2008 08:04:48 +0900 (JST)
Subject: [ruby-changes:7280] Ruby:r18799 (trunk): * strftime.c (daylight, timezone): not provied as dllexport on cygwin,

nobu	2008-08-24 08:03:44 +0900 (Sun, 24 Aug 2008)

  New Revision: 18799

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

  Log:
    * strftime.c (daylight, timezone): not provied as dllexport on cygwin,
      right now.

  Modified files:
    trunk/ChangeLog
    trunk/strftime.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 18798)
+++ ChangeLog	(revision 18799)
@@ -1,3 +1,8 @@
+Sun Aug 24 08:03:31 2008  Nobuyoshi Nakada  <nobu@r...>
+
+	* strftime.c (daylight, timezone): not provied as dllexport on cygwin,
+	  right now.
+
 Sun Aug 24 06:39:05 2008  NARUSE, Yui  <naruse@r...>
 
 	* lib/cgi.rb (CGI::unescapeHTML): more encoding sensible unescaping.
Index: strftime.c
===================================================================
--- strftime.c	(revision 18798)
+++ strftime.c	(revision 18799)
@@ -120,7 +120,7 @@
 
 #define range(low, item, hi)	max(low, min(item, hi))
 
-#if defined __CYGWIN__ || defined __WIN32__ || defined _WIN32
+#if defined __WIN32__ || defined _WIN32
 #define DLL_IMPORT __declspec(dllimport)
 #endif
 #ifndef DLL_IMPORT

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

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