View | Details | Raw Unified | Return to bug 13486
Collapse All | Expand All

(-)a/about.pl (-4 / +4 lines)
Lines 57-65 if ($^O ne 'VMS') { Link Here
57
}
57
}
58
my $perlVersion   = $];
58
my $perlVersion   = $];
59
my $mysqlVersion  = `mysql -V`;
59
my $mysqlVersion  = `mysql -V`;
60
my $apacheVersion = `httpd -v 2> /dev/null`;
60
# Get Apache version
61
$apacheVersion = `httpd2 -v 2> /dev/null` unless $apacheVersion;
61
my $apacheVersion = (`apache2ctl -v`)[0];
62
$apacheVersion = (`/usr/sbin/apache2 -V`)[0] unless $apacheVersion;
62
$apacheVersion    = `httpd2 -v 2> /dev/null` unless $apacheVersion;
63
$apacheVersion    = `httpd -v 2> /dev/null` unless $apacheVersion;
63
my $zebraVersion = `zebraidx -V`;
64
my $zebraVersion = `zebraidx -V`;
64
65
65
# Additional system information for warnings
66
# Additional system information for warnings
66
- 

Return to bug 13486