# HG changeset patch # User Elliott Sales de Andrade # Date 1324606400 0 # Node ID 066823e80669ad4fc7f3bdb37deacfc80d11417e # Parent fb0c5aa0fe559edce694cb18104943d8ed687b5d 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. diff -r fb0c5aa0fe55 -r 066823e80669 configure.ac --- 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())