Am 05.02.2016 um 13:46 schrieb Yann Ylavic:
On Fri, Feb 5, 2016 at 1:31 PM, <[email protected]> wrote:
Author: rjung
Date: Fri Feb 5 12:31:33 2016
New Revision: 1728656
[]
Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.h
URL:
http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy.h?rev=1728656&r1=1728655&r2=1728656&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/proxy/mod_proxy.h (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy.h Fri Feb 5 12:31:33 2016
@@ -558,6 +558,11 @@ struct proxy_balancer_method {
#define PROXY_DECLARE_DATA __declspec(dllimport)
#endif
+/* A non-functional marker tag to inform build/make_nw_export.awk
+ * that this hook is not linked in the module.
+ */
+#define PROXY_HOOK_NON_LINKED
+
Maybe :
#define PROXY_DECLARE_EXTERNAL_HOOK APR_DECLARE_EXTERNAL_HOOK
and then use it below (and with awk)?
That could shorten DECLARE lines a bit and save indentation..
OK, good idea, thanks.
Regards,
Rainer