From d38fc8d2f348b44e8747e8c575a7a9d4a07dc45a Mon Sep 17 00:00:00 2001 From: shyouhei Date: Wed, 22 Aug 2007 03:31:45 +0000 Subject: * configure.in (ac_cv_func_isinf): set yes also on OpenSolaris. [ruby-Bugs-12859] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@13218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 6 +++--- version.h | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9c8e00271..56a7985e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 22 12:31:15 2007 Nobuyoshi Nakada + + * configure.in (ac_cv_func_isinf): set yes also on OpenSolaris. + [ruby-Bugs-12859] + Wed Aug 22 12:30:42 2007 Nobuyoshi Nakada * lib/rexml/encodings/{ISO-8859-15,CP-1252}.rb: fixed invalid syntax. diff --git a/configure.in b/configure.in index 7d0db79b2..29c19d2b0 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 diff --git a/version.h b/version.h index b88680dcb..ef10bcda2 100644 --- a/version.h +++ b/version.h @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2007-08-22" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20070822 -#define RUBY_PATCHLEVEL 85 +#define RUBY_PATCHLEVEL 86 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 -- cgit