diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-14 05:24:17 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-03-14 05:24:17 +0000 |
| commit | 07504c78556e13a96857eef4038578895b9d54b0 (patch) | |
| tree | ade1621754fa597e5d3104131532d0b229748822 | |
| parent | f5a05ee64fff58aa19ddaa04cf832ab4c296d4a1 (diff) | |
| download | ruby-07504c78556e13a96857eef4038578895b9d54b0.tar.gz ruby-07504c78556e13a96857eef4038578895b9d54b0.tar.xz ruby-07504c78556e13a96857eef4038578895b9d54b0.zip | |
* ext/digest/defs.h: inttypes.h is still needed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15776 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/digest/defs.h | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Fri Mar 14 14:24:15 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/digest/defs.h: inttypes.h is still needed. + Fri Mar 14 11:34:12 2008 NAKAMURA Usaku <usa@ruby-lang.org> * {bcc,win}32/Makefile.sub: follow below changes. diff --git a/ext/digest/defs.h b/ext/digest/defs.h index 77a134f36..bdffa2655 100644 --- a/ext/digest/defs.h +++ b/ext/digest/defs.h @@ -16,4 +16,8 @@ # define __END_DECLS #endif +#if defined(HAVE_INTTYPES_H) +# include <inttypes.h> +#endif + #endif /* DEFS_H */ |
