diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-22 03:31:45 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-22 03:31:45 +0000 |
commit | a18125cfc8a8f535ffb591e35908a5fbb4b32302 (patch) | |
tree | 707aa7f3f66ca055753e81ca4ab3945be1d0d18a /configure.in | |
parent | 59aa42ccb440ec30656d68f78d037d9731846256 (diff) |
* configure.in (ac_cv_func_isinf): set yes also on OpenSolaris.
[ruby-Bugs-12859]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 7d0db79b29..29c19d2b0e 100644 --- a/configure.in +++ b/configure.in @@ -460,10 +460,10 @@ bow) ac_cv_func_setitimer=no ;; superux*) ac_cv_func_setitimer=no ;; -solaris*2.10) if test -z "$GCC"; then - ac_cv_func_isinf=yes +solaris*2.1*) if test -z "$GCC"; then + ac_cv_func_isinf=yes fi - LIBS="-lm $LIBS" + LIBS="-lm $LIBS" ;; *) LIBS="-lm $LIBS";; esac |