]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
suEXEC: Fix backport r1070639 which breaks compilation for platforms which do
authorJeff Trawick <trawick@apache.org>
Thu, 3 Mar 2011 13:07:48 +0000 (13:07 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 3 Mar 2011 13:07:48 +0000 (13:07 +0000)
not support suexec. The patch also avoids printing the useless suexec path.

Submitted by: fuankg
Reviewed  by: rpluem, trawick

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

STATUS
include/httpd.h

diff --git a/STATUS b/STATUS
index 4620a9543c60769ffcad666493a135bc8323f656..930c1e81bf5607eb81c66b4887d39e8c027326f4 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -132,13 +132,6 @@ PATCHES PROPOSED TO BACKPORT FROM TRUNK:
      2.2.x patch: Trunk version of patch works with offset  
      +1 fuankg
 
-  * suEXEC: Fix backport r1070639 which breaks compilation for platforms which do
-     not support suexec. The patch also avoids printing the useless suexec path.     
-     Trunk patch: n/a
-     2.2.x patch: http://people.apache.org/~fuankg/diffs/httpd_h.diff
-     +1 fuankg, rpluem
-
-
 PATCHES/ISSUES THAT ARE STALLED
 
   * mod_dav: If an unknown Content-* header is received for a PUT request, we
index 40351b79c663c3b654cc55671810808d9ea4f6d5..500f38cb827f62fee760929b85b33a2d8b8f9aaf 100644 (file)
@@ -154,9 +154,11 @@ extern "C" {
 #endif
 
 /** The path to the suExec wrapper, can be overridden in Configuration */
+#if !defined(NETWARE) && !defined(WIN32)
 #ifndef SUEXEC_BIN
 #define SUEXEC_BIN  HTTPD_ROOT "/bin/suexec"
 #endif
+#endif
 
 /** The timeout for waiting for messages */
 #ifndef DEFAULT_TIMEOUT