From: William A. Rowe Jr Date: Fri, 16 Sep 2005 16:04:37 +0000 (+0000) Subject: I'd prefer, before 2.2-final, to have AP_NEED_SET_MUTEX_PERMS defined X-Git-Tag: 2.3.0~3003 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=105543fce65510afd0800feec8d1f7b6338c427e;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/trunk@289592 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/unix/os.h b/os/unix/os.h index e3b5b61b99f..bac07134bfc 100644 --- a/os/unix/os.h +++ b/os/unix/os.h @@ -38,7 +38,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);