From: Amos Jeffries Date: Thu, 15 Jul 2010 00:52:47 +0000 (-0600) Subject: Bug 2885: AIX support: check libm for log() X-Git-Tag: SQUID_3_2_0_1~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3e4b99c1ed5af2119fbd538d3ed7512902dc272;p=thirdparty%2Fsquid.git Bug 2885: AIX support: check libm for log() --- diff --git a/configure.in b/configure.in index e06b7eb5a5..f6a83e410d 100644 --- a/configure.in +++ b/configure.in @@ -2645,9 +2645,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