diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-16 07:46:11 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-16 07:46:11 +0000 |
| commit | 1f005d4469636532a641034324f3044a567d995c (patch) | |
| tree | bcac633e19df12bc8d33b55ff2096cdce6e53505 /ext | |
| parent | b79183e0553e1b3f162d04d7b7e5cf7f147e7983 (diff) | |
| download | ruby-1f005d4469636532a641034324f3044a567d995c.tar.gz ruby-1f005d4469636532a641034324f3044a567d995c.tar.xz ruby-1f005d4469636532a641034324f3044a567d995c.zip | |
* configure.in (aix): enable shared by default.
* configure.in (aix): for 64bit-mode AIX. [ruby-dev:31401]
+ use CC for LDSHARED if non-gcc,
+ moved -G option from *LDFLAGS to LDSHARED,
+ set -brtl only in XLDFLAGS.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/json/ext/generator/generator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/ext/generator/generator.c b/ext/json/ext/generator/generator.c index cc639f9a3..b08455f22 100644 --- a/ext/json/ext/generator/generator.c +++ b/ext/json/ext/generator/generator.c @@ -1,9 +1,9 @@ /* vim: set cin et sw=4 ts=4: */ -#include <string.h> #include "ruby/ruby.h" #include "ruby/st.h" #include "unicode.h" +#include <string.h> #include <math.h> #define check_max_nesting(state, depth) do { \ |
