To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=78456
------- Additional comments from [EMAIL PROTECTED] Thu Jun 14 15:33:55 +0000 2007 ------- if we decide we really need XML::Parser we then need a configure.in check for it, too (given that it was already there as build-requirement the check not being there was a bug anyway). Proposed: --- configure.in 25 May 2007 14:35:07 -0000 1.206 +++ configure.in 14 Jun 2007 15:32:36 -0000 @@ -1412,11 +1412,17 @@ dnl =================================================================== dnl Testing for required Perl modules dnl =================================================================== -AC_MSG_CHECKING([for required Perl modules]) +AC_MSG_CHECKING([for required Perl module Archive::Zip]) if `$PERL -e 'use Archive::Zip;'`; then - AC_MSG_RESULT([all modules found]) + AC_MSG_RESULT([found]) else - AC_MSG_ERROR([Failed to find some modules]) + AC_MSG_ERROR([not found, Archive::Zip is neede. Install it.d]) +fi +AC_MSG_CHECKING([for required Perl module XML::Parser]) +if `$PERL -e 'use XML::Parser;'`; then + AC_MSG_RESULT([found]) +else + AC_MSG_ERROR([not found, XML::Zip is needed. Install it.]) fi dnl ============================================================= --------------------------------------------------------------------- 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]
