1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-24 08:51:10 -08:00

Check for -lm. Then can check for frexp and logb.

This commit is contained in:
Roland McGrath 1993-08-10 18:16:48 +00:00
parent 4cc1b78aef
commit 3f469c2e5e

View file

@ -1176,7 +1176,10 @@ if test "${HAVE_X11}" = "yes"; then
fi
AC_ALLOCA
AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir random bcopy)
# logb and frexp are found in -lm on most systems.
AC_HAVE_LIBRARY(-lm)
AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir random bcopy logb frexp)
ok_so_far=true
AC_FUNC_CHECK(socket, , ok_so_far=)