From: Greg Stein Date: Mon, 12 Feb 2001 02:42:10 +0000 (+0000) Subject: *) include the strings stuff the right way (some platforms use string.h; X-Git-Tag: 2.0.11~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8068b49327d67aa451482b6a0b76446d52cb570f;p=apache *) include the strings stuff the right way (some platforms use string.h; apr_want figures all that out for us) *) include ap_mpm.h to pick up a moved func declaration git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88102 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/scoreboard.c b/server/scoreboard.c index 6587f840f8..9ce6970deb 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -61,10 +61,12 @@ #include "apr_portable.h" #include "apr_lib.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" + #if APR_HAVE_SYS_TYPES_H #include #endif -#include #include "ap_config.h" #include "httpd.h" @@ -72,6 +74,7 @@ #include "http_main.h" #include "http_core.h" #include "http_config.h" +#include "ap_mpm.h" #include "mpm.h" #include "scoreboard.h"