diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-02 05:52:17 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-02 05:52:17 +0000 |
commit | 9a4eb635d158eedc72487441af82092f48f8b998 (patch) | |
tree | 21082c83d02194a0b364d0004f50a74934f57e5c /configure.in | |
parent | cae08b6d74e482f2c249d07474151462d29e4f9c (diff) |
* configure.in: The isinf is not regognized by autoconf
library guesser on solaris 10. [ruby-core:7138]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 7f305e52fb..0e2820fae4 100644 --- a/configure.in +++ b/configure.in @@ -398,6 +398,9 @@ bow) ac_cv_func_setitimer=no ;; superux*) ac_cv_func_setitimer=no ;; +solaris*2.10) ac_cv_func_isinf=yes + LIBS="-lm $LIBS" + ;; *) LIBS="-lm $LIBS";; esac AC_CHECK_LIB(crypt, crypt) |