From: Ryan Bloom Date: Fri, 10 Dec 1999 20:22:07 +0000 (+0000) Subject: We now make the decision to USE_MMAP_FILES based on whether or not APR X-Git-Tag: 1.3.10~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd54e2951cd7b4bf211bf176e5ead228614b1c31;p=thirdparty%2Fapache%2Fhttpd.git We now make the decision to USE_MMAP_FILES based on whether or not APR has MMAP. If APR_HAS_MMAP is true then USE_MMAP_FILES is true. We also no longer check for MMAP in autoconf within Apache. Apache relies on APR to give us MMAP functionality, and therefore doesn't need to check for itself. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84278 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/config.m4 b/server/config.m4 index 6cd5b9e5593..c45474061b1 100644 --- a/server/config.m4 +++ b/server/config.m4 @@ -46,9 +46,3 @@ AC_CHECK_FUNCS( difftime \ syslog \ ) -AC_FUNC_MMAP - -dnl XXX - is autoconf's detection routine good enough? -if test "$ac_cv_func_mmap_fixed_mapped" = "yes"; then - AC_DEFINE(USE_MMAP_FILES) -fi