changeset in /hg/icedtea6: 2008-08-14 Lillian Angel <langel at re...
Xerxes Rånby
xerxes at zafena.se
Fri Aug 15 01:54:35 PDT 2008
Hi Lillian!
This change makes configure fail on my system with:
checking for libgcj-4.3*.jar or libgcj-4.1*.jar... ./configure: line
7826: test: /usr/share/java/libgcj-4.3.1.jar: binary operator expected
no
configure: error: "A LIBGCJ jar was not found."
make: *** [config.status] Fel 1
the error is cause because the wildcard matches both the symlink and the
real libgcj jar file in /usr/share/java/
on my system it looks like this:
xerxes at armel:/usr/share/java$ ls -la libgcj*
lrwxrwxrwx 1 root root 14 25 jul 16.23 libgcj-4.3.1.jar ->
libgcj-4.3.jar
-rw-r--r-- 1 root root 10240119 11 jul 01.51 libgcj-4.3.jar
the attached patch fixes this issue on my system by adding a . before
the * .
Have a great day!
Xerxes
Lillian Angel skrev:
> changeset 626751ee178e in /hg/icedtea6
> details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=626751ee178e
> description:
> 2008-08-14 Lillian Angel <langel at redhat.com>
>
> * acinclude.m4: Changed LIBGCJ_JAR check to be less stringent with
> minor versions.
>
> diffstat:
>
> 2 files changed, 15 insertions(+), 20 deletions(-)
> ChangeLog | 5 +++++
> acinclude.m4 | 30 ++++++++++--------------------
>
> diffs (54 lines):
>
> diff -r 288bdc0696ff -r 626751ee178e ChangeLog
> --- a/ChangeLog Thu Aug 14 16:54:46 2008 +0200
> +++ b/ChangeLog Thu Aug 14 11:14:26 2008 -0400
> @@ -1,3 +1,8 @@ 2008-08-14 Mark Wielaard <mark at klomp.o
> +2008-08-14 Lillian Angel <langel at redhat.com>
> +
> + * acinclude.m4: Changed LIBGCJ_JAR check to be less stringent with
> + minor versions.
> +
> 2008-08-14 Mark Wielaard <mark at klomp.org>
>
> * patches/icedtea-signed-types-hot6.patch: New patch.
> diff -r 288bdc0696ff -r 626751ee178e acinclude.m4
> --- a/acinclude.m4 Thu Aug 14 16:54:46 2008 +0200
> +++ b/acinclude.m4 Thu Aug 14 11:14:26 2008 -0400
> @@ -254,28 +254,18 @@ AC_DEFUN([FIND_LIBGCJ_JAR],
> LIBGCJ_JAR=
> ])
> if test -z "${LIBGCJ_JAR}"; then
> - AC_MSG_CHECKING(for libgcj-4.3.0.jar or libgcj-4.1.2.jar)
> - if test -e "/usr/share/java/libgcj-4.3.0.jar"; then
> - LIBGCJ_JAR=/usr/share/java/libgcj-4.3.0.jar
> + AC_MSG_CHECKING(for libgcj-4.3*.jar or libgcj-4.1*.jar)
> + if test -e /usr/share/java/libgcj-4.3*.jar; then
> + LIBGCJ_JAR=/usr/share/java/libgcj-4.3*.jar
> AC_MSG_RESULT(${LIBGCJ_JAR})
> else
> - if test -e "/usr/share/java/libgcj-4.3.jar"; then
> - LIBGCJ_JAR=/usr/share/java/libgcj-4.3.jar
> - AC_MSG_RESULT(${LIBGCJ_JAR})
> - else
> - AM_CONDITIONAL(GCC_OLD, test x = x)
> - if test -e "/usr/share/java/libgcj-4.1.2.jar"; then
> - LIBGCJ_JAR=/usr/share/java/libgcj-4.1.2.jar
> - AC_MSG_RESULT(${LIBGCJ_JAR})
> - else
> - if test -e "/usr/share/java/libgcj-4.1.jar"; then
> - LIBGCJ_JAR=/usr/share/java/libgcj-4.1.jar
> - AC_MSG_RESULT(${LIBGCJ_JAR})
> - else
> - AC_MSG_RESULT(no)
> - fi
> - fi
> - fi
> + AM_CONDITIONAL(GCC_OLD, test x = x)
> + if test -e /usr/share/java/libgcj-4.1*.jar; then
> + LIBGCJ_JAR=/usr/share/java/libgcj-4.1*.jar
> + AC_MSG_RESULT(${LIBGCJ_JAR})
> + else
> + AC_MSG_RESULT(no)
> + fi
> fi
> fi
> if test -z "${LIBGCJ_JAR}"; then
>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: libgcj.check.patch
Type: text/x-patch
Size: 934 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20080815/21c42828/libgcj.check.patch
More information about the distro-pkg-dev
mailing list