From fd54e2951cd7b4bf211bf176e5ead228614b1c31 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Fri, 10 Dec 1999 20:22:07 +0000 Subject: [PATCH] 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 --- server/config.m4 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/server/config.m4 b/server/config.m4 index 6cd5b9e559..c45474061b 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 -- 2.50.1