From: Amos Jeffries Date: Wed, 21 Jul 2010 07:22:02 +0000 (-0600) Subject: Bug 2885: AIX support: check libm for log() X-Git-Tag: SQUID_3_1_5_1~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5dfb9bcf733d8304b9069b2a40d0b89f2749b7d4;p=thirdparty%2Fsquid.git Bug 2885: AIX support: check libm for log() --- diff --git a/configure.in b/configure.in index e0ed682658..e5ee37ef31 100644 --- a/configure.in +++ b/configure.in @@ -2647,9 +2647,10 @@ mingw|mingw32) AC_MSG_NOTICE([Use MSVCRT for math functions.]) ;; *) - dnl rint() is only used in old C code for now. + dnl rint() and log() are only used in old C code for now. AC_LANG_PUSH([C]) AC_SEARCH_LIBS([rint],[m]) + AC_SEARCH_LIBS([log],[m]) AC_LANG_POP([C]) ;; esac