changeset 32417:066823e80669

rekkanoryo pointed out that this error message is for a different function than is actually tested. Also, make a note that Windows does not use libm.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Fri, 23 Dec 2011 02:13:20 +0000
parents fb0c5aa0fe55
children 466efc330d3d
files configure.ac
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Fri Dec 23 02:05:09 2011 +0000
+++ b/configure.ac	Fri Dec 23 02:13:20 2011 +0000
@@ -202,10 +202,10 @@
 dnl FreeBSD doesn't have libdl, dlopen is provided by libc
 AC_CHECK_FUNC(dlopen, LIBDL="", [AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl")])
 
-dnl Haiku does not use libm for the math functions, they are part
+dnl Windows and Haiku do not use libm for the math functions, they are part
 dnl of the C library
 AC_SEARCH_LIBS([ceil], [m], [], [
-  AC_MSG_ERROR([unable to find the floor() function])
+  AC_MSG_ERROR([unable to find the ceil() function])
 ])
 
 AC_MSG_CHECKING(for fileno())