From: Jeff Trawick Date: Wed, 18 Apr 2001 18:39:10 +0000 (+0000) Subject: add "extern" to the decl of http_module so that we don't get duplicate X-Git-Tag: 2.0.18~208 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=52d4dfdfc0dbbc1d96e6b8580ce29105191cfd06;p=thirdparty%2Fapache%2Fhttpd.git add "extern" to the decl of http_module so that we don't get duplicate symbol warnings from the linkers on some platforms (e.g., AIX) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88884 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/mod_core.h b/modules/http/mod_core.h index 477b9817547..2caa038e7c1 100644 --- a/modules/http/mod_core.h +++ b/modules/http/mod_core.h @@ -99,7 +99,7 @@ AP_DECLARE(void) ap_basic_http_header(request_rec *r, apr_bucket_brigade *bb); AP_DECLARE(int) ap_send_http_trace(request_rec *r); int ap_send_http_options(request_rec *r); -AP_DECLARE_DATA module http_module; +AP_DECLARE_DATA extern module http_module; #ifdef __cplusplus }