]> granicus.if.org Git - apache/commitdiff
Fixes the build of proxy on Windows. Since the proxy_module is declared
authorGraham Leggett <minfrin@apache.org>
Wed, 4 Aug 2004 00:32:07 +0000 (00:32 +0000)
committerGraham Leggett <minfrin@apache.org>
Wed, 4 Aug 2004 00:32:07 +0000 (00:32 +0000)
as extern using AP_MODULE_DECLARE_DATA that expands to dllexport, there
is a LNK2001 error when building proxy_http.
PR:
Obtained from: Mladen Turk <mturk@apache.org>
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104469 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/proxy/mod_proxy.h

diff --git a/CHANGES b/CHANGES
index 03304556c83687eb9e0379c78e619c5b6c03fef3..22aed4e4a92dc1e1853141167e1d846eb07a4f15 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) Fixes the build of proxy on Windows. Since the proxy_module is declared
+     as extern using AP_MODULE_DECLARE_DATA that expands to dllexport, there
+     is a LNK2001 error when building proxy_http. [Mladen Turk]
+
   *) Remove LDAP toolkit specific code from util_ldap and mod_auth_ldap.
      [Graham Leggett]
 
index d0d5de3c2a2b31fd550bbd6a4ec62334f5d75f92..4ff5f1c8dc70fda7597e898f649a9509692be9f6 100644 (file)
@@ -256,6 +256,6 @@ PROXY_DECLARE(int) ap_proxy_ssl_enable(conn_rec *c);
 PROXY_DECLARE(int) ap_proxy_ssl_disable(conn_rec *c);
 
 /* For proxy_util */
-extern module AP_MODULE_DECLARE_DATA proxy_module;
+extern module PROXY_DECLARE_DATA proxy_module;
 
 #endif /*MOD_PROXY_H*/