randyk 2004/01/11 07:22:11
Modified: perl-framework/Apache-Test/lib/Apache TestRun.pm
Log:
Revert change to search for Apache/Apache2 for the benefit of Win32,
rather than apache/apache2, as the latter is required for Unix.
Revision Changes Path
1.137 +2 -2
httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm
Index: TestRun.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- TestRun.pm 10 Jan 2004 22:07:17 -0000 1.136
+++ TestRun.pm 11 Jan 2004 15:22:10 -0000 1.137
@@ -1346,8 +1346,8 @@
for (grep defined $_,
map({ catfile $vars->{$_}, $vars->{target} } qw(sbindir
bindir)),
$test_config->default_httpd, which($vars->{target}),
- $ENV{APACHE}, which('Apache'), which('httpd'),
- $ENV{APACHE2}, which('Apache2'), which('httpd2')) {
+ $ENV{APACHE}, which('apache'), which('httpd'),
+ $ENV{APACHE2}, which('apache2'), which('httpd2')) {
$choices{$_}++ if -e $_ && -x _;
}
my $optional = 0;