-*- coding: utf-8 -*-
Changes with Apache 2.2.20
-
+ *) core: Do the hook sorting earlier so that the hooks are properly sorted
+ for the pre_config hook and during parsing the config. [Stefan Fritsch]
Changes with Apache 2.2.19
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * Sort hooks before running pre-config hook.
- Trunk patch: http://svn.apache.org/viewvc?rev=1032002&view=rev
- (Omit trunk's config*m4 change which adjusted the order of statically
- linked modules.)
- PR: 45076
- 2.2.x patch: http://people.apache.org/~trawick/1032002-2.2.x.txt
- +1: trawick, sf, covener
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
if (!server_conf) {
destroy_and_exit_process(process, 1);
}
+ apr_hook_sort_all();
if (ap_run_pre_config(pconf, plog, ptemp) != OK) {
ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR, 0,
if (rv == OK) {
ap_fixup_virtual_hosts(pconf, server_conf);
ap_fini_vhost_config(pconf, server_conf);
- apr_hook_sort_all();
if (configtestonly) {
ap_run_test_config(pconf, server_conf);
if (!server_conf) {
destroy_and_exit_process(process, 1);
}
+ apr_hook_sort_all();
if (ap_run_pre_config(pconf, plog, ptemp) != OK) {
ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR,
}
ap_fixup_virtual_hosts(pconf, server_conf);
ap_fini_vhost_config(pconf, server_conf);
- apr_hook_sort_all();
apr_pool_clear(plog);
if (ap_run_open_logs(pconf, plog, ptemp, server_conf) != OK) {
ap_log_error(APLOG_MARK, APLOG_STARTUP |APLOG_ERR,