From: Nick Kew Date: Tue, 7 Jun 2005 23:45:50 +0000 (+0000) Subject: Fix for reported compile problem X-Git-Tag: 2.1.5~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fef85f786995eec282b2e5baeb5da056f9f49d51;p=apache Fix for reported compile problem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@189475 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index e6bf91ffbe..619e53892f 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -59,16 +59,17 @@ #include #endif -APR_HOOK_STRUCT( #if AP_ENABLE_EXCEPTION_HOOK +APR_HOOK_STRUCT( APR_HOOK_LINK(fatal_exception) -#endif APR_HOOK_LINK(monitor) ) - -#if AP_ENABLE_EXCEPTION_HOOK AP_IMPLEMENT_HOOK_RUN_ALL(int, fatal_exception, (ap_exception_info_t *ei), (ei), OK, DECLINED) +#else +APR_HOOK_STRUCT( + APR_HOOK_LINK(monitor) +) #endif AP_IMPLEMENT_HOOK_RUN_ALL(int, monitor, (apr_pool_t *p), (p), OK, DECLINED)