]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Implicit (third) +1, backport trivial fix for missing unistd.h
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 12 May 2004 20:08:36 +0000 (20:08 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 12 May 2004 20:08:36 +0000 (20:08 +0000)
  rev 1.19 of mod_log_forensic

Contributor: Gunter
Verified by: trawick, nd, wrowe

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@103666 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/loggers/mod_log_forensic.c

diff --git a/STATUS b/STATUS
index 18c38b2e43df40afe3f01dc4ccfcf07c15bb0a27..b87a0a1bee655e0b4bc3132669dc60081bc7cafa 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                              -*-text-*-
-Last modified at [$Date: 2004/05/07 21:49:34 $]
+Last modified at [$Date: 2004/05/12 20:08:35 $]
 
 Release:
 
@@ -87,10 +87,6 @@ PATCHES TO BACKPORT FROM 2.1
          server/mpm/winnt/child.c: r1.36 
        +1: ake, trawick
 
-    *) mod_log_forensic: Fix build on systems without unistd.h. PR 28572
-         modules/loggers/mod_log_forensic.c: r1.19
-       +1: nd, trawick
-
     *) mod_actions: Regression from 1.3: the file referred to must exist.
        Solve this by introducing the "virtual" modifier to the Action
        directive. PR 28553.
index a40810c03da946e9706659c5b9cd649d4ca2d10e..5d35aded90358586d86dbe12f90b676e31e7d40b 100644 (file)
 #include "http_log.h"
 #include "apr_strings.h"
 #include "apr_atomic.h"
-#include <unistd.h>
 #include "http_protocol.h"
 #include "test_char.h"
+#if APR_HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 module AP_MODULE_DECLARE_DATA log_forensic_module;