From: Ryan Bloom Date: Thu, 2 Mar 2000 20:36:46 +0000 (+0000) Subject: Fix the logic for ap_signal, so it is exposed in external header files in APR. X-Git-Tag: APACHE_2_0_ALPHA~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a47df7dd38240bbbf8bbde3edb53ea788216367;p=apache Fix the logic for ap_signal, so it is exposed in external header files in APR. Also change the header file included in http_log.c. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84700 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/log.c b/server/log.c index ccac63bbfb..8dd2c8c6f8 100644 --- a/server/log.c +++ b/server/log.c @@ -64,10 +64,14 @@ #define CORE_PRIVATE +#ifdef WIN32 +#include "apr_win.h" +#else +#include "apr.h" /* for ap_signal */ +#endif #include "ap_config.h" #include "apr_lib.h" #include "apr_portable.h" -#include "apr_config.h" /* XXX for ap_signal?? */ #include "httpd.h" #include "http_config.h" #include "http_core.h"