From eaaf23637a8343937329ab16efef880346870ad5 Mon Sep 17 00:00:00 2001 From: ocean Date: Thu, 2 Feb 2006 05:52:17 +0000 Subject: * configure.in: The isinf is not regognized by autoconf library guesser on solaris 10. [ruby-core:7138] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index d2d0bbd7f..d433a5221 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 2 14:45:53 2006 Ville Mattila + + * configure.in: The isinf is not regognized by autoconf + library guesser on solaris 10. [ruby-core:7138] + Tue Jan 31 11:58:51 2006 Hidetoshi NAGAI * ext/tk/lib/multi-tk.rb: add MultiTkIp#eval and bg_eval. diff --git a/configure.in b/configure.in index 7f305e52f..0e2820fae 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) -- cgit