1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in: should test isinf for Solaris with GCC compiler.

[ruby-core:08100]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-06-30 14:50:40 +00:00
parent 02c8eb1ba8
commit a391419dbb
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Jun 30 23:46:23 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* configure.in: should test isinf for Solaris with GCC compiler.
[ruby-core:08100]
Fri Jun 30 19:35:41 2006 GOTOU Yuuzou <gotoyuzo@notwork.org> Fri Jun 30 19:35:41 2006 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/webrick/httputils.rb (WEBrick::HTTPUtils._escape): should * lib/webrick/httputils.rb (WEBrick::HTTPUtils._escape): should

View file

@ -431,7 +431,9 @@ bow) ac_cv_func_setitimer=no
;; ;;
superux*) ac_cv_func_setitimer=no superux*) ac_cv_func_setitimer=no
;; ;;
solaris*2.10) ac_cv_func_isinf=yes solaris*2.10) if test -z "$GCC"; then
ac_cv_func_isinf=yes
fi
LIBS="-lm $LIBS" LIBS="-lm $LIBS"
;; ;;
*) LIBS="-lm $LIBS";; *) LIBS="-lm $LIBS";;