Mailing List Archive

cvs commit: modperl Makefile.PL
dougm 98/06/08 14:30:11

Modified: . Makefile.PL
Log:
Doug broke PERL_SSI=1 and PERL_TIE_TABLES=1 w/ USE_APACI=1
thanks to Brian Millet for spotting this and the fix

Revision Changes Path
1.41 +11 -8 modperl/Makefile.PL

Index: Makefile.PL
===================================================================
RCS file: /export/home/cvs/modperl/Makefile.PL,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- Makefile.PL 1998/06/08 19:37:08 1.40
+++ Makefile.PL 1998/06/08 21:30:09 1.41
@@ -435,14 +435,7 @@

}
elsif($USE_APACI) {
- my $cmd = "./configure --activate-module=src/modules/perl/libperl.a";
- if($USE_DSO) {
- $cmd .= " --enable-shared=perl";
- }
- if($APACI_ARGS) {
- $cmd .= " " . join " ", split(',', $APACI_ARGS);
- }
- system "(cd $APACHE_ROOT && $cmd)";
+ #take care of things later
}
else {
$conf = "src/Configuration";
@@ -726,6 +719,16 @@
$apaci_cfg->close if $apaci_cfg;
}

+ if($USE_APACI) {
+ my $cmd = "./configure --activate-module=src/modules/perl/libperl.a";
+ if($USE_DSO) {
+ $cmd .= " --enable-shared=perl";
+ }
+ if($APACI_ARGS) {
+ $cmd .= " " . join " ", split(',', $APACI_ARGS);
+ }
+ system "(cd $APACHE_ROOT && $cmd)";
+ }
#expand ./t to full path
iedit "t/conf/httpd.conf", "s: \./t(\S*): $PWD/t\$1:";