# HG changeset patch # User Roland McGrath # Date 745006608 0 # Node ID 24b5dca58fbe317ef1c094864e7045cd79c14872 # Parent cf77def3abe2eaf9ac76ac0fda4a8a612305ed5e Check for -lm. Then can check for frexp and logb. diff -r cf77def3abe2 -r 24b5dca58fbe configure1.in --- a/configure1.in Tue Aug 10 17:57:31 1993 +0000 +++ b/configure1.in Tue Aug 10 18:16:48 1993 +0000 @@ -1176,7 +1176,10 @@ 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=)