From: André Malo Date: Mon, 26 Apr 2004 18:58:59 +0000 (+0000) Subject: fix build on systems without unistd.h X-Git-Tag: pre_ajp_proxy~308 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8e029ae124fb57be1f3bfc98de53a9d65a37399;p=apache fix build on systems without unistd.h Submitted by: Guenter Knauf git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103530 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/loggers/mod_log_forensic.c b/modules/loggers/mod_log_forensic.c index 649d52cf11..34387d7127 100644 --- a/modules/loggers/mod_log_forensic.c +++ b/modules/loggers/mod_log_forensic.c @@ -30,9 +30,11 @@ #include "http_log.h" #include "apr_strings.h" #include "apr_atomic.h" -#include #include "http_protocol.h" #include "test_char.h" +#if APR_HAVE_UNISTD_H +#include +#endif module AP_MODULE_DECLARE_DATA log_forensic_module;