Author: jorton Date: Mon Jan 10 08:21:25 2005 New Revision: 124808 URL: http://svn.apache.org/viewcvs?view=rev&rev=124808 Log: * configure.in: Aggregate some AC_CHECK_FUNCS usage.
Modified: apr/apr/trunk/configure.in Modified: apr/apr/trunk/configure.in Url: http://svn.apache.org/viewcvs/apr/apr/trunk/configure.in?view=diff&rev=124808&p1=apr/apr/trunk/configure.in&r1=124807&p2=apr/apr/trunk/configure.in&r2=124808 ============================================================================== --- apr/apr/trunk/configure.in (original) +++ apr/apr/trunk/configure.in Mon Jan 10 08:21:25 2005 @@ -861,15 +861,14 @@ dnl ----------------------------- Checks for Any required Functions dnl Checks for library functions. (N.B. poll is further down) -AC_CHECK_FUNCS(alloca calloc setsid isinf isnan) -AC_CHECK_FUNCS(getenv putenv setenv unsetenv) +AC_CHECK_FUNCS([alloca calloc setsid isinf isnan \ + getenv putenv setenv unsetenv \ + writev getifaddrs utime utimes]) AC_CHECK_FUNCS(setrlimit, [ have_setrlimit="1" ], [ have_setrlimit="0" ]) AC_CHECK_FUNCS(getrlimit, [ have_getrlimit="1" ], [ have_getrlimit="0" ]) -AC_CHECK_FUNCS(writev) sendfile="0" AC_CHECK_LIB(sendfile, sendfilev) AC_CHECK_FUNCS(sendfile send_file sendfilev, [ sendfile="1" ]) -AC_CHECK_FUNCS(utime utimes) dnl THIS MUST COME AFTER THE THREAD TESTS - FreeBSD doesn't always have a dnl threaded poll() and we don't want to use sendfile on early FreeBSD @@ -1897,9 +1896,6 @@ AC_SUBST(have_sctp) AC_CHECK_FUNCS(set_h_errno) - -dnl Used in the Multicast Code -AC_CHECK_FUNCS(getifaddrs) echo "${nl}Checking for IPv6 Networking support..." dnl Start of checking for IPv6 support...
