From b8e029ae124fb57be1f3bfc98de53a9d65a37399 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Mon, 26 Apr 2004 18:58:59 +0000 Subject: [PATCH] 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 --- modules/loggers/mod_log_forensic.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.40.0