You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/11/24 18:55:38 UTC

svn commit: r883802 - /httpd/httpd/trunk/server/util_mutex.c

Author: trawick
Date: Tue Nov 24 17:55:37 2009
New Revision: 883802

URL: http://svn.apache.org/viewvc?rev=883802&view=rev
Log:
fix Win32 compile failure in r883540, reported by Gregg Smith

Modified:
    httpd/httpd/trunk/server/util_mutex.c

Modified: httpd/httpd/trunk/server/util_mutex.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util_mutex.c?rev=883802&r1=883801&r2=883802&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util_mutex.c (original)
+++ httpd/httpd/trunk/server/util_mutex.c Tue Nov 24 17:55:37 2009
@@ -34,7 +34,9 @@
 #include "http_config.h"
 #include "http_log.h"
 #include "util_mutex.h"
+#if AP_NEED_SET_MUTEX_PERMS
 #include "unixd.h"
+#endif
 #ifdef HAVE_UNISTD_H
 #include <unistd.h> /* getpid() */
 #endif