From 1a47df7dd38240bbbf8bbde3edb53ea788216367 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Thu, 2 Mar 2000 20:36:46 +0000 Subject: [PATCH] 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 --- server/log.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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" -- 2.50.1