diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-07 09:01:27 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-07 09:01:27 +0000 |
| commit | 09abd57cd8ae7c79507dd68c884d08ab5a9f715c (patch) | |
| tree | cad348c2298f0b189a1511673162fe1d80ffeb0c | |
| parent | a12b728745cf68dfda53dfa3e6b522ecd8fc7dcf (diff) | |
| download | ruby-09abd57cd8ae7c79507dd68c884d08ab5a9f715c.tar.gz ruby-09abd57cd8ae7c79507dd68c884d08ab5a9f715c.tar.xz ruby-09abd57cd8ae7c79507dd68c884d08ab5a9f715c.zip | |
* ext/bigdecimal/bigdecimal.c, ext/digest/rmd160/rmd160ossl.c,
ext/digest/sha1/sha1ossl.c, ext/readline/readline.c: move
incluion of config.h to pacify AIX. a patch from Yutaka
Kanemoto <kinpoco at gmail.com>. [ruby-dev:29197]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10699 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | ext/bigdecimal/bigdecimal.c | 2 | ||||
| -rw-r--r-- | ext/digest/rmd160/rmd160ossl.c | 2 | ||||
| -rw-r--r-- | ext/digest/sha1/sha1ossl.c | 2 | ||||
| -rw-r--r-- | ext/readline/readline.c | 1 |
5 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,10 @@ +Mon Aug 7 17:56:59 2006 Yukihiro Matsumoto <matz@ruby-lang.org> + + * ext/bigdecimal/bigdecimal.c, ext/digest/rmd160/rmd160ossl.c, + ext/digest/sha1/sha1ossl.c, ext/readline/readline.c: move + incluion of config.h to pacify AIX. a patch from Yutaka + Kanemoto <kinpoco at gmail.com>. [ruby-dev:29197] + Mon Aug 7 15:55:08 2006 Yukihiro Matsumoto <matz@ruby-lang.org> * ext/syck/syck.c (syck_move_tokens): should avoid negative diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index 0abd20546..04266b1d4 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -13,6 +13,7 @@ * */ +#include "ruby.h" #include <ctype.h> #include <stdio.h> #include <stdlib.h> @@ -20,7 +21,6 @@ #include <errno.h> #include <float.h> #include <math.h> -#include "ruby.h" #include "math.h" #include "version.h" diff --git a/ext/digest/rmd160/rmd160ossl.c b/ext/digest/rmd160/rmd160ossl.c index be66d81ff..2989ffd00 100644 --- a/ext/digest/rmd160/rmd160ossl.c +++ b/ext/digest/rmd160/rmd160ossl.c @@ -1,7 +1,7 @@ /* $Id$ */ -#include "rmd160ossl.h" #include "defs.h" +#include "rmd160ossl.h" #include <assert.h> #include <stdlib.h> diff --git a/ext/digest/sha1/sha1ossl.c b/ext/digest/sha1/sha1ossl.c index b125128f8..82a4f6f05 100644 --- a/ext/digest/sha1/sha1ossl.c +++ b/ext/digest/sha1/sha1ossl.c @@ -1,7 +1,7 @@ /* $Id$ */ -#include "sha1ossl.h" #include "defs.h" +#include "sha1ossl.h" #include <assert.h> #include <stdlib.h> diff --git a/ext/readline/readline.c b/ext/readline/readline.c index af7e029d1..4f840ee2c 100644 --- a/ext/readline/readline.c +++ b/ext/readline/readline.c @@ -1,6 +1,7 @@ /* readline.c -- GNU Readline module Copyright (C) 1997-2001 Shugo Maeda */ +#include "config.h" #include <errno.h> #include <stdio.h> #include <ctype.h> |
