Changes with Apache 2.0.41
+ *) Bug #11213.. make module loading error messages more informative
+ [Ian Darwin <Ian779@darwinsys.com>]
+
*) thread safety & proxy-ftp [Alexey Panchenko alexey@liwest.ru, Ian Holsman]
*) mod_disk_cache works much better. This module should still
if (m->version != MODULE_MAGIC_NUMBER_MAJOR) {
ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
"%s: module \"%s\" is not compatible with this "
- "version of Apache.", ap_server_argv0, m->name);
+ "version of Apache (found %d, need %d).",
+ ap_server_argv0, m->name, m->version,
+ MODULE_MAGIC_NUMBER_MAJOR);
ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
"Please contact the vendor for the correct version.");
exit(1);