From: Jeff Trawick Date: Mon, 28 Mar 2011 18:18:52 +0000 (+0000) Subject: add hints for X-Git-Tag: 2.3.12~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4633c48f14792e63846d890667b2197db7e7c4f0;p=thirdparty%2Fapache%2Fhttpd.git add hints for * C++ and APLOG_USE_MODULE() * mpm_default.h git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086325 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/new_api_2_4.xml b/docs/manual/developer/new_api_2_4.xml index 0e9c9fbea3f..45597415c43 100644 --- a/docs/manual/developer/new_api_2_4.xml +++ b/docs/manual/developer/new_api_2_4.xml @@ -275,6 +275,9 @@ APLOG_USE_MODULE(foo);
#endif +

Note: This is absolutely required for C++-language modules. It + can be skipped for C-language modules, though that breaks + module-specific log level support for files without it.

The number of parameters of the ap_log_* functions and the definition of APLOG_MARK has changed. Normally, the change is completely transparent. However, changes are required if a @@ -414,6 +417,15 @@ 0/APR_SUCCESS if there is no such error information, or a valid apr_status_t value otherwise. +

mpm_default.h, DEFAULT_LOCKFILE, + DEFAULT_THREAD_LIMIT, DEFAULT_PIDLOG, + etc.
+
The header file and most of the default configuration + values set in it are no longer visible to modules. (Most can + still be overridden at build time.) DEFAULT_PIDLOG + and DEFAULT_REL_RUNTIMEDIR are now universally + available via ap_config.h.
+
unixd_config
This has been renamed to ap_unixd_config.