]> git.eshelyaron.com Git - emacs.git/commitdiff
Check for -lm. Then can check for frexp and logb.
authorRoland McGrath <roland@gnu.org>
Tue, 10 Aug 1993 18:16:48 +0000 (18:16 +0000)
committerRoland McGrath <roland@gnu.org>
Tue, 10 Aug 1993 18:16:48 +0000 (18:16 +0000)
configure1.in

index ee633c8f0b77b6fd3b728783a8863aa8cc02a019..07978375461f0a0f7f07842356c9c262d98437f1 100755 (executable)
@@ -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=)