return HTTP_INTERNAL_SERVER_ERROR;
}
+#if !defined(OS2) && !defined(WIN32) && !defined(BEOS) && !defined(NETWARE)
rv = unixd_set_global_mutex_perms(rewrite_log_lock);
if (rv != APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s,
"rewrite_log_lock; check User and Group directives");
return HTTP_INTERNAL_SERVER_ERROR;
}
+#endif
rv = rewritelock_create(s, p);
if (rv != APR_SUCCESS) {
return rc;
}
+#if !defined(OS2) && !defined(WIN32) && !defined(BEOS) && !defined(NETWARE)
rc = unixd_set_global_mutex_perms(rewrite_mapr_lock_acquire);
if (rc != APR_SUCCESS) {
ap_log_error(APLOG_MARK, APLOG_CRIT, rc, s,
"on RewriteLock; check User and Group directives");
return rc;
}
+#endif
return APR_SUCCESS;
}