summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-13 17:12:52 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-13 17:12:52 +0000
commita0c13d9d6f53eb427ca5a448c4fbeb8a96e56954 (patch)
treed089938c897e55657cdfae466d2499606bc8c4fa
parent86624aa2d7714fc8da85f7f82af1ddd382c8ebd3 (diff)
downloadruby-a0c13d9d6f53eb427ca5a448c4fbeb8a96e56954.tar.gz
ruby-a0c13d9d6f53eb427ca5a448c4fbeb8a96e56954.tar.xz
ruby-a0c13d9d6f53eb427ca5a448c4fbeb8a96e56954.zip
* configure.in: no need to set ac_cv_func_isinf=yes on non-gcc
solaris. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13916 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure.in5
2 files changed, 4 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ef47235e..78daa12c7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,10 @@
-Wed Nov 14 01:52:59 2007 Tanaka Akira <akr@fsij.org>
+Wed Nov 14 02:11:38 2007 Tanaka Akira <akr@fsij.org>
* missing/isinf.c (isinf): don't define is the macro is defined.
+ * configure.in: no need to set ac_cv_func_isinf=yes on non-gcc
+ solaris.
+
Wed Nov 14 01:34:42 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* numeric.c (round): fallback definition.
diff --git a/configure.in b/configure.in
index a1b82d1cf..8788847ac 100644
--- a/configure.in
+++ b/configure.in
@@ -507,11 +507,6 @@ bow) ac_cv_func_setitimer=no
;;
superux*) ac_cv_func_setitimer=no
;;
-solaris*2.1*) if test -z "$GCC"; then
- ac_cv_func_isinf=yes
- fi
- LIBS="-lm $LIBS"
- ;;
*) LIBS="-lm $LIBS";;
esac
AC_CHECK_LIB(crypt, crypt)