From: William A. Rowe Jr Date: Fri, 16 Sep 2005 16:07:01 +0000 (+0000) Subject: I'd prefer, before 2.2-final, to have AP_NEED_SET_MUTEX_PERMS defined X-Git-Tag: 2.1.8~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74981339b08f6c0a62bb9bb03eab7bd962a2d4fc;p=thirdparty%2Fapache%2Fhttpd.git I'd prefer, before 2.2-final, to have AP_NEED_SET_MUTEX_PERMS defined across all architectures as 1|0. Comments? This simply ensures we can use the value in #if tests. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@289593 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/unix/os.h b/os/unix/os.h index 4370c229316..162d10612a6 100644 --- a/os/unix/os.h +++ b/os/unix/os.h @@ -27,7 +27,7 @@ /* On platforms where AP_NEED_SET_MUTEX_PERMS is defined, modules * should call unixd_set_*_mutex_perms on mutexes created in the * parent process. */ -#define AP_NEED_SET_MUTEX_PERMS +#define AP_NEED_SET_MUTEX_PERMS 1 #ifdef _OSD_POSIX pid_t os_fork(const char *user);