diff options
author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-31 14:17:40 +0000 |
---|---|---|
committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-31 14:17:40 +0000 |
commit | 4270dbe629600ac7ab72da3fecd13ba7af234a51 (patch) | |
tree | 6497d1a0562df13937fa68f37b64a68a27b419b5 /complex.c | |
parent | 05ec839244c807c1b6f6f701abd01f5eac41a37e (diff) | |
download | bundler-4270dbe629600ac7ab72da3fecd13ba7af234a51.tar.gz |
Forward-ports r32777 from branches/ruby_1_9_3 to trunk.
--
* complex.c (f_signbit): gcc4 on Solaris DOES have signbit but does
not have it on header.
* math.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32786 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1173,6 +1173,9 @@ nucomp_eql_p(VALUE self, VALUE other) inline static VALUE f_signbit(VALUE x) { +#if defined(HAVE_SIGNBIT) && defined(__GNUC__) && defined(__sun__) + extern int signbit(double x); +#endif switch (TYPE(x)) { case T_FLOAT: { double f = RFLOAT_VALUE(x); |