Mailing List Archive

Apache2 installation breakage
I just did an apache2 development installation and one part where it
dies is where it checks for the Apache modules. This seems to fix it,
but I'm not sure if it's backwards compatible:

Index: inst/htprobe_apache2.pl
===================================================================
--- inst/htprobe_apache2.pl (revision 8503)
+++ inst/htprobe_apache2.pl (working copy)
@@ -241,7 +241,7 @@
my (@missing);
# loop over required modules
MOD:
- foreach my $mod (qw(apreq expires perl log_config mime alias
apache_ssl ssl)) {
+ foreach my $mod (qw(apreq2 expires perl log_config mime alias
apache_ssl ssl)) {
# first look in static modules
if (exists $AP{static_modules}{"mod_$mod"} ||
($mod eq 'apache_ssl' && exists $AP{static_modules}{$mod})) {
Re: Apache2 installation breakage [ In reply to ]
On Mar 12, 2009, at 6:52 PM, Adrian Yee wrote:

> I just did an apache2 development installation and one part where it
> dies is where it checks for the Apache modules. This seems to fix
> it, but I'm not sure if it's backwards compatible:

Please review this thread:

http://www.gossamer-threads.com/lists/bricolage/devel/36137

Best,

David