From: Jeff Trawick Date: Tue, 2 Jan 2001 18:32:49 +0000 (+0000) Subject: Get mod_so to build again by including apr_general.h, which is where X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~285 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da47216709fe550d0aefd1a9a51a98afe61324a9;p=thirdparty%2Fapache%2Fhttpd.git Get mod_so to build again by including apr_general.h, which is where the APR_GET_POOL() macro is defined. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87570 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_so.c b/modules/mappers/mod_so.c index e37598b09cb..2029582ee3c 100644 --- a/modules/mappers/mod_so.c +++ b/modules/mappers/mod_so.c @@ -126,6 +126,7 @@ */ #include "apr.h" +#include "apr_general.h" /* for APR_GET_POOL() */ #include "apr_dso.h" #include "apr_strings.h" #include "apr_errno.h"