Your message dated Tue, 15 Aug 2006 19:32:11 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#376336: fixed in kaffe 2:1.1.7-4
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kaffe
Version: 2:1.1.7-3
Severity: grave

On my i386 system:

frobnitz:/tmp# cat Test.java
public class Test {
public static void main (String args[]) {
System.exit(0);
}
}
frobnitz:/tmp# /usr/lib/kaffe/bin/javac Test.java
Internal error: caught an unexpected exception.
Please check your CLASSPATH and your installation.
java/lang/NullPointerException
   at gnu.classpath.SystemProperties.getProperty (SystemProperties.java:123)
   at java.lang.VMClassLoader.<clinit> (VMClassLoader.java:84)
   at java.lang.ClassLoader$StaticData.<clinit> (ClassLoader.java:155)
   at java.lang.ClassLoader.getSystemClassLoader (ClassLoader.java:797)
   at gnu.classpath.VMSystemProperties.postInit (VMSystemProperties.java:native)
   at gnu.classpath.SystemProperties.<clinit> (SystemProperties.java:114)
   at java.lang.Runtime.<init> (Runtime.java:100)
   at java.lang.Runtime.<clinit> (Runtime.java:88)
   at java.lang.System.loadLibrary (System.java:560)
   at gnu.java.nio.channels.FileChannelImpl.<clinit> (FileChannelImpl.java:86)
   at java.io.FileDescriptor.<clinit> (FileDescriptor.java:64)
   at java.lang.VMSystem.makeStandardInputStream (VMSystem.java:191)
   at java.lang.System.<clinit> (System.java:74)
   at java.lang.Object.hashCode (Object.java:174)
   at java.util.Hashtable.hash (Hashtable.java:816)
   at java.util.Hashtable.put (Hashtable.java:426)
   at java.security.Permissions.add (Permissions.java:112)
Aborted
frobnitz:/tmp# gcj -C Test.java
frobnitz:/tmp# kaffe Test
Internal error: caught an unexpected exception.
Please check your CLASSPATH and your installation.
java/lang/NullPointerException
   at gnu.classpath.SystemProperties.getProperty (SystemProperties.java:123)
[and so on as before]
frobnitz:/tmp# gij Test
frobnitz:/tmp#
-- 
Daniel Schepler


--- End Message ---
--- Begin Message ---
Source: kaffe
Source-Version: 2:1.1.7-4

We believe that the bug you reported is fixed in the latest version of
kaffe, which is due to be installed in the Debian FTP archive:

jikes-kaffe_1.1.7-4_all.deb
  to pool/main/k/kaffe/jikes-kaffe_1.1.7-4_all.deb
kaffe-common_1.1.7-4_all.deb
  to pool/main/k/kaffe/kaffe-common_1.1.7-4_all.deb
kaffe-dev_1.1.7-4_all.deb
  to pool/main/k/kaffe/kaffe-dev_1.1.7-4_all.deb
kaffe-doc_1.1.7-4_all.deb
  to pool/main/k/kaffe/kaffe-doc_1.1.7-4_all.deb
kaffe-jthreads_1.1.7-4_i386.deb
  to pool/main/k/kaffe/kaffe-jthreads_1.1.7-4_i386.deb
kaffe-pthreads_1.1.7-4_i386.deb
  to pool/main/k/kaffe/kaffe-pthreads_1.1.7-4_i386.deb
kaffe_1.1.7-4.diff.gz
  to pool/main/k/kaffe/kaffe_1.1.7-4.diff.gz
kaffe_1.1.7-4.dsc
  to pool/main/k/kaffe/kaffe_1.1.7-4.dsc
kaffe_1.1.7-4_all.deb
  to pool/main/k/kaffe/kaffe_1.1.7-4_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jeroen van Wolffelaar <[EMAIL PROTECTED]> (supplier of updated kaffe package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 16 Aug 2006 03:25:31 +0200
Source: kaffe
Binary: kaffe-dev kaffe-common kaffe-pthreads kaffe-doc kaffe jikes-kaffe 
kaffe-jthreads
Architecture: source all i386
Version: 2:1.1.7-4
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
<[email protected]>
Changed-By: Jeroen van Wolffelaar <[EMAIL PROTECTED]>
Description: 
 jikes-kaffe - Wrapper for jikes using Kaffe classes
 kaffe      - A JVM to run Java bytecode
 kaffe-common - Files shared between all Kaffe VM versions
 kaffe-dev  - Header files and other resources for building against Kaffe
 kaffe-doc  - Documentation for the Kaffe VM
 kaffe-jthreads - A green threads enabled version of the Kaffe VM
 kaffe-pthreads - A POSIX threads enabled version of the Kaffe VM
Closes: 369877 374689 376336
Changes: 
 kaffe (2:1.1.7-4) unstable; urgency=low
 .
   * Use default gcc again for ia64
   * Added 04_gcc4.1_amd64.patch: patch by Kurt Roeckx <[EMAIL PROTECTED]> to 
fix
     kaffe with gcc-4.1 on amd64 (Closes: #374689, might also fix: #375835):
     + kaffe/kaffevm/systems/unix-{p,j}threads/signal.c: Add more volatile
       modifiers to remove optimizations.
   * Added 05_gcc4.1_x86.patch: patch by Dalibor Topic <[EMAIL PROTECTED]> to
     fix kaffe for gcc 4.1 (Closes: #376336):
     + config/i386/jit.h (FIRSTFRAME): Don't use
       __builtin_frame_address, as that behaves differently
       under -O0 and -O1 under gcc 4.1.x. Use a small bit
       of assembler instead.
     + configure.ac: Ensure that -fno-strict-aliasing and
       -fno-omit-frame-pointer are set for gcc.
   * Added 06_atomic_ia64.patch: Fix compilation on ia64 by updating atomic.h to
     glibc 2.4.0 version, thanks to Dalibor Topic <[EMAIL PROTECTED]> for the
     fix, and thanks to Bill Allombert for reporting (Closes: #369877)
Files: 
 a14ec75a0eb3df355384988470b3e24c 1351 interpreters optional kaffe_1.1.7-4.dsc
 9e539dfa7c868219c3f40ed78ddf0d08 39733 interpreters optional 
kaffe_1.1.7-4.diff.gz
 ddd3f51aa7090dccac619d790553da3c 85452 interpreters optional 
kaffe_1.1.7-4_all.deb
 fbef8c55c920b1fbf7c943d3cc82dc53 8006382 interpreters optional 
kaffe-common_1.1.7-4_all.deb
 c681d91a38b8534a34eeca614b312889 100914 interpreters optional 
kaffe-dev_1.1.7-4_all.deb
 80c4ab98c797b08248d7211170c58b3d 83830 interpreters optional 
jikes-kaffe_1.1.7-4_all.deb
 9c208f7b39b49c6580efce9decfbf219 171488 interpreters optional 
kaffe-doc_1.1.7-4_all.deb
 b4a45eca728efaa0468a1670a975a6e6 613206 interpreters optional 
kaffe-jthreads_1.1.7-4_i386.deb
 a8c4dc1fd7860ed929fd2972e26645d4 665730 interpreters optional 
kaffe-pthreads_1.1.7-4_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Signed by Jeroen van Wolffelaar <[EMAIL PROTECTED]>

iD8DBQFE4oIvl2uISwgTVp8RArQWAJ90AUT8DtNQZjca0WlW3ucQ365hIwCgtXzD
HFk22Bzdh5EAu0t86KOblaw=
=gUTB
-----END PGP SIGNATURE-----


--- End Message ---
_______________________________________________
pkg-java-maintainers mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-java-maintainers

Reply via email to