To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=65170
User rene changed the following:
What |Old value |New value
================================================================================
Status|NEW |RESOLVED
--------------------------------------------------------------------------------
Resolution| |WORKSFORME
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Sat Jul 22 08:12:46 -0700
2006 -------
It does:
from configure.in:
if test "$SOLAR_JAVA" = "TRUE"; then
if test -z "$DB_JAR"; then
# three different naming methods *grumble* Are there even more?
AC_CHECK_FILE(/usr/share/java/db.jar, [ JARVER=0 ],
[
AC_CHECK_FILE(/usr/share/java/db-$DB_VERSION.jar, [ JARVER=1 ],
[ AC_CHECK_FILE(/usr/share/java/libdb$DB_VERSION-java.jar,
[ JARVER_LONGSTYLE=1 ],
[ AC_MSG_ERROR(db$DB_VERSION_MAJOR Java bindings not found)]
)
]
)
]
)
if test "$JARVER" = "1"; then
DB_JAR=/usr/share/java/jar-$DB_VERSION.jar
else
DB_JAR=/usr/share/java/db.jar
fi
if test "$JARVER_LONGSTYLE" = "1"; then
DB_JAR=/usr/share/java/libdb$DB_VERSION-java.jar
fi
if test -z "$DB_JAR"; then
AC_MSG_ERROR([libdb $DB_VERSION jar not found. Install it or specify path
with --with-db-jar=/path/to/jar])
fi
---------------------------------------------------------------------
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]