--- apache_1.3.9/src/support/apxs.pl.apxs Sat Jul 24 14:05:02 1999 +++ apache_1.3.9/src/support/apxs.pl Fri Aug 27 11:28:09 1999 @@ -92,15 +92,15 @@ ## Initial shared object support check ## if (not -x "$CFG_SBINDIR/$CFG_TARGET") { - print STDERR "apxs:Error: $CFG_SBINDIR/$CFG_TARGET not found or not executable\n"; - exit(1); + print STDERR "apxs:Warning: $CFG_SBINDIR/$CFG_TARGET not found or not executable\n"; + print STDERR "apxs:Warning: Continuing anyway...\n"; } if (not grep(/mod_so/, `$CFG_SBINDIR/$CFG_TARGET -l`)) { - print STDERR "apxs:Error: Sorry, no shared object support for Apache\n"; - print STDERR "apxs:Error: available under your platform. Make sure\n"; - print STDERR "apxs:Error: the Apache module mod_so is compiled into\n"; - print STDERR "apxs:Error: your server binary `$CFG_SBINDIR/$CFG_TARGET'.\n"; - exit(1); + print STDERR "apxs:Warning: No shared object support for Apache\n"; + print STDERR "apxs:Warning: available under your platform. Make sure\n"; + print STDERR "apxs:Warning: the Apache module mod_so is compiled into\n"; + print STDERR "apxs:Warning: your server binary `$CFG_SBINDIR/$CFG_TARGET'.\n"; + print STDERR "apsx:Warning: Continuing anyway...\n"; } ##