To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112604
                 Issue #|112604
                 Summary|configure: reject hsqldb 1.8.1.x
               Component|tools
                 Version|current
                Platform|Unknown
                     URL|
              OS/Version|All
                  Status|NEW
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|PATCH
                Priority|P3
            Subcomponent|configure
             Assigned to|rene
             Reported by|rene





------- Additional comments from r...@openoffice.org Tue Jun 22 14:18:00 +0000 
2010 -------
Hi,

we should prohibit building against hsqldb 1.8.1 as the following:

diff --git a/configure.in b/configure.in
--- a/configure.in
+++ b/configure.in
@@ -3990,7 +3990,7 @@
         fi
         AC_CHECK_FILE($HSQLDB_JAR, [],
                [AC_MSG_ERROR(hsqldb.jar not found.)], [])
-        AC_MSG_CHECKING([whether hsqldb is >= 1.8.0.9])
+        AC_MSG_CHECKING([whether hsqldb is 1.8.0.x])
         export HSQLDB_JAR
         if $PERL -e 'use Archive::Zip;
             my $file = "$ENV{'HSQLDB_JAR'}";
@@ -4003,7 +4003,7 @@
                        ($t, $version) = split (/:/,$line);
                        $version =~ s/^\s//;
                        ($a, $b, $c, $d) = split (/\./,$version);
-                       if (($c == "0" && $d > "8") || $c > 0)  {
+                       if ($c == "0" && $d > "8")  {
                            exit 0;
                        } else {
                            exit 1;
@@ -4015,7 +4015,7 @@
             }'; then
             AC_MSG_RESULT([yes])
          else
-            AC_MSG_ERROR([no, hsqldb >= 1.8.0.9 is needed])
+            AC_MSG_ERROR([no, you need hsqldb >= 1.8.0.9 but < 1.8.1])
          fi
 else
     AC_MSG_RESULT([internal])

to prevent stuff like 
http://de.openoffice.org/servlets/ReadMsg?list=dev&msgNo=44128

---------------------------------------------------------------------
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: issues-unsubscr...@tools.openoffice.org
For additional commands, e-mail: issues-h...@tools.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to