From ccb45a9b730a41429911421bd67a9313b76eeb2d Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 19 Apr 2009 13:34:30 +0000 Subject: merges r23072 from trunk into ruby_1_9_1. -- * ext/sdbm/_sdbm.c: should include "ruby/defines.h" as well for prototypes of compatibility functions on Win32 platform. [ruby-core:22870] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23225 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ ext/sdbm/_sdbm.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index a12319fa9..0ee7f87ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Mar 13 21:11:51 2009 Yukihiro Matsumoto + + * ext/sdbm/_sdbm.c: should include "ruby/defines.h" as well for + prototypes of compatibility functions on Win32 platform. + [ruby-core:22870] + Thu Mar 26 11:33:13 2009 Nobuyoshi Nakada * lib/rdoc/ri/paths.rb (RDoc::RI::Paths): considers diff --git a/ext/sdbm/_sdbm.c b/ext/sdbm/_sdbm.c index 5668c2c18..b3a598dbc 100644 --- a/ext/sdbm/_sdbm.c +++ b/ext/sdbm/_sdbm.c @@ -13,6 +13,7 @@ #include "sdbm.h" #include "ruby/config.h" +#include "ruby/defines.h" /* * sdbm - ndbm work-alike hashed database library -- cgit