diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-23 23:03:44 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-23 23:03:44 +0000 |
| commit | fadd9ea3e0be99384e28fe64db6b01e50b3ccb2e (patch) | |
| tree | 6f0002f00db9bd368eb547ffbc82b6434d5f86db | |
| parent | 77452f19528affec2eef118a902dcbcdd4018d60 (diff) | |
| download | ruby-fadd9ea3e0be99384e28fe64db6b01e50b3ccb2e.tar.gz ruby-fadd9ea3e0be99384e28fe64db6b01e50b3ccb2e.tar.xz ruby-fadd9ea3e0be99384e28fe64db6b01e50b3ccb2e.zip | |
* strftime.c (daylight, timezone): not provied as dllexport on cygwin,
right now.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18799 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | strftime.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sun Aug 24 08:03:31 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * strftime.c (daylight, timezone): not provied as dllexport on cygwin, + right now. + Sun Aug 24 06:39:05 2008 NARUSE, Yui <naruse@ruby-lang.org> * lib/cgi.rb (CGI::unescapeHTML): more encoding sensible unescaping. diff --git a/strftime.c b/strftime.c index f97768e7f..d90e8e526 100644 --- a/strftime.c +++ b/strftime.c @@ -120,7 +120,7 @@ extern char *strchr(); #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 |
