I think this has to do with 'if (HAVE_APACHE_2_0_47) {'. May be the new api compress didn't end up in 2.0.47.

apr_table_overlay was in 2.0.46 so 2.0.47 shouldn't be a problem. the only APR issue is apr_table_compress, which was introduced between 2.0.46 and 2.0.47. from modperl_apache_compat.h


/* pre-APR_0_9_5 (APACHE_2_0_47)
 * both 2.0.46 and 2.0.47 shipped with 0.9.4 -
 * we need the one that shipped with 2.0.47,
   which is major mmn 20020903, minor mmn 4 */
#if ! AP_MODULE_MAGIC_AT_LEAST(20020903,4)

which matches the MMN matisse posted:

*** /usr/local/apache2.0.47/bin/httpd -V
Server version: Apache/2.0.47
Server built:   Nov  7 2003 09:08:18
Server's Module Magic Number: 20020903:4

so all of APR should be cool with 2.0.47.

--Geoff


-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html



Reply via email to