To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53211
------- Additional comments from [EMAIL PROTECTED] Thu Aug 11 12:56:34 -0700
2005 -------
maybe this could give an idea for a patch..
sub report
{
my $label = shift;
$label = "Checking $label...";
my $error = shift;
while (length ($label) < 50) { $label .= ' ' }
if (defined $error and $error)
{
print $label;
print "[\e[91mFAILED\e[0m]\n";
}
else
{
print $label;
print "[\e[92mOK\e[0m]\n";
}
}
eval "use Crypt::SSLeay";
report ('Crypt::SSLeay', $@);
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]