diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-07 03:45:15 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-07 03:45:15 +0000 |
| commit | 75dfa79fe90c5ec9d9e2166524af58fd0b57cfd7 (patch) | |
| tree | 989d45e14a78399b67e84089fbefe713b6d8d645 | |
| parent | c3d19ddd691bcadbe6d22b844030fb1e7a677cd2 (diff) | |
| download | ruby-75dfa79fe90c5ec9d9e2166524af58fd0b57cfd7.tar.gz ruby-75dfa79fe90c5ec9d9e2166524af58fd0b57cfd7.tar.xz ruby-75dfa79fe90c5ec9d9e2166524af58fd0b57cfd7.zip | |
* configure.in (ac_cv_func_isinf): set yes also on OpenSolaris.
[ruby-Bugs-12859]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Tue Aug 7 12:45:13 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * configure.in (ac_cv_func_isinf): set yes also on OpenSolaris. + [ruby-Bugs-12859] + Tue Aug 7 12:31:51 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> * io.c (pipe_open): fix for win32 platforms. diff --git a/configure.in b/configure.in index dcccf1889..effadc38f 100644 --- a/configure.in +++ b/configure.in @@ -486,10 +486,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 |
