Re: javah in 0.97+ - trouble

2008-05-14 Thread Michael Koch
On Wed, May 14, 2008 at 09:51:58AM +0200, Christian Thalinger wrote:
 On Wed, 2008-05-14 at 01:19 +0200, Robert Schuster wrote:
  I would like to suggest the following way to fix this issue: The build
  system should allow using the just built javah application being run
  with a provided java executable. This would be less pain for me and
  would probably also benefit other cross compilation efforts.
  
  E.g. --enable-builtin-javah should set the javah executable to some
  script which is generated (perhaps from the real gjavah) which is run
  with the java vm specified by --with-java.
 
 That sounds like a good idea.  It won't help in any situation but maybe
 in some.d

I would prefer if *releases* would contain generated header files.
This would make building on a new arch a lot easier.

Also would this remove the need to build the java parts on a new arch
where there is probably no javac yet.


Cheers,
Michael



Re: [cp-patches] FYI: javax.tools stuff

2008-01-09 Thread Michael Koch
On Wed, Jan 09, 2008 at 11:13:00PM +0100, Roman Kennke wrote:
 I'm beginning the implementation of javax.tools with two interfaces.
 
 2006-01-09  Roman Kennke  [EMAIL PROTECTED]
 
   * javax/tools/Diagnostic.java,
   * javax/tools/DiagnosticListener.java:
   New interfaces.

Hmmm, that doesnt fit the patch below somehow ;-)


Cheers,
Michael

 /Roman
 
 -- 
 http://kennke.org/blog/

 Index: gnu/java/awt/peer/x/XWindowPeer.java
 ===
 RCS file: /cvsroot/classpath/classpath/gnu/java/awt/peer/x/XWindowPeer.java,v
 retrieving revision 1.5
 diff -u -1 -0 -r1.5 XWindowPeer.java
 --- gnu/java/awt/peer/x/XWindowPeer.java  20 Sep 2007 14:01:09 -  
 1.5
 +++ gnu/java/awt/peer/x/XWindowPeer.java  9 Jan 2008 22:05:08 -
 @@ -54,20 +54,21 @@
  import java.awt.Rectangle;
  import java.awt.event.PaintEvent;
  import java.awt.event.WindowEvent;
  import java.awt.image.VolatileImage;
  
  import gnu.x11.Atom;
  import gnu.x11.Window;
  import gnu.x11.event.Event;
  
  import gnu.java.awt.font.OpenTypeFontPeer;
 +import gnu.java.awt.peer.ClasspathFontPeer;
  import gnu.java.awt.peer.swing.SwingWindowPeer;
  
  public class XWindowPeer
  extends SwingWindowPeer
  {
  
private static int standardSelect = Event.BUTTON_PRESS_MASK
| Event.BUTTON_RELEASE_MASK
| Event.POINTER_MOTION_MASK
//| Event.RESIZE_REDIRECT_MASK
 @@ -283,22 +284,21 @@
  return (Insets) insets.clone();
}
  
/**
 * Returns the font metrics for the specified font.
 *
 * @return the font metrics for the specified font
 */
public FontMetrics getFontMetrics(Font font)
{
 -// FIXME: Fix this for X fonts.
 -OpenTypeFontPeer fontPeer = (OpenTypeFontPeer) font.getPeer();
 +ClasspathFontPeer fontPeer = (ClasspathFontPeer) font.getPeer();
  return fontPeer.getFontMetrics(font);
}
  
/**
 * Unregisters the window in the event pump when it is closed.
 */
protected void finalize()
{
  XGraphicsDevice dev = XToolkit.getDefaultDevice();
  dev.getEventPump().unregisterWindow(xwindow);




Re: [cp-patches] FYI: Allow ecj to work via com.sun.tools.javac.Main

2007-10-17 Thread Michael Koch
On Wed, Oct 17, 2007 at 07:44:24PM +0200, Christian Thalinger wrote:
 On Wed, 2007-10-17 at 17:12 +0100, Andrew Haley wrote:
That's true.  But a normal CACAO or JamVM installation does not
  have a
jre/ directory, as we follow the GNU rules.
  
  Sure, but real-world Java applications assume a particular layout.
  Maybe they shouldn't, but they do.  It's not just ecj that makes this
  assumption to find things.  The easiest fix is to install a few
  symlinks in the appropriate places.  You can't tell me that GNU rules
  disallow this, surely.
 
 I know they do and a long time ago we tried to mimic a JDK directory
 structure when installing, but we removed all that code (I think because
 of Debian's rules, but not sure about that).
 
 Normally distribution packagers care about this JRE-layout (as we call
 it):
 
 http://packages.debian.org/sid/cacao/alpha/filelist
 
 CACAO also has a --with-jre-layout configure option where we search for
 the classes and for the libraries at runtime, relative to the binary
 (just as HotSpot does).

It would be great if cacao (or any another free runtime) puts the
according symlinks in some configurable place like
/usr/lib/jvm/java-$JAVAVERSION-$NAME in addition to the normal install
into into the $PREFIX  (normally /usr in distros).


Cheers
Michael



Re: [cp-patches] FYI: Allow ecj to work via com.sun.tools.javac.Main

2007-10-17 Thread Michael Koch
On Wed, Oct 17, 2007 at 07:14:05PM +0100, Robert Lougher wrote:
 Hi,
 
 On 10/17/07, Michael Koch [EMAIL PROTECTED] wrote:
 
  It would be great if cacao (or any another free runtime) puts the
  according symlinks in some configurable place like
  /usr/lib/jvm/java-$JAVAVERSION-$NAME in addition to the normal install
  into into the $PREFIX  (normally /usr in distros).
 
 
 Something like:
 
 /usr/lib/jvm/java-1.5.0-jamvm
 /usr/lib/jvm/java-1.5.0-jamvm/bin
 /usr/lib/jvm/java-1.5.0-jamvm/lib
 /usr/lib/jvm/java-1.5.0-jamvm/jre
 /usr/lib/jvm/java-1.5.0-jamvm/jre/bin
 /usr/lib/jvm/java-1.5.0-jamvm/jre/lib

In general yes, but this should be all directories with needed links
inside, not the directories being symlinked itself. This would make it
much more flexible for distros.


Cheers,
Michael



Re: [cp-patches] FYI: Allow ecj to work via com.sun.tools.javac.Main

2007-10-17 Thread Michael Koch
Hello Robert,


On Wed, Oct 17, 2007 at 07:44:21PM +0100, Robert Lougher wrote:
 Anybody see any problems with making a symlink from rt.jar to glibj.zip, i.e.
 
 /usr/lib/jvm/java-1.5.0-jamvm/lib/rt.jar -
   /usr/local/classpath/share/classpath/glibj.zip ?
 
 Probably a stupid question, but as far as I'm aware (I'm at work and
 can't look), glibj.zip doesn't have a manifest or index file, but the
 META-INF directory is optional in the Jar file format...
 
 This could be done during install, as long as Classpath was already installed.

Yes, I see currently no reason against this.


Cheers,
Michael



[cp-patches] Fix alsa support with GCC 4.2

2007-09-08 Thread Michael Koch
Hello list,


I just committed the attached patch. It removes the @ERROR_CFLAGS@
variable from AM_CFLAGS in native/jni/midi-alsa/Makefile.am. In general
it would be possible to suppress the warning with -Wno-address. But this
option was introduced with GCC 4.2 and earlier versions fail because
they dont know that option.


Cheers,
Michael


2007-09-08  Michael Koch  [EMAIL PROTECTED]

* native/jni/midi-alsa/Makefile.am (AM_CFLAGS):
Removed @ERROR_CFLAGS@ to not fail build with GCC 4.2.
Index: native/jni/midi-alsa/Makefile.am
===
RCS file: /sources/classpath/classpath/native/jni/midi-alsa/Makefile.am,v
retrieving revision 1.5
diff -a -u -r1.5 Makefile.am
--- native/jni/midi-alsa/Makefile.am	5 Apr 2007 12:05:48 -	1.5
+++ native/jni/midi-alsa/Makefile.am	8 Sep 2007 07:00:28 -
@@ -8,5 +8,5 @@
 libgjsmalsa_la_LDFLAGS = $(AM_LDFLAGS) -avoid-version
 
 AM_LDFLAGS = @CLASSPATH_MODULE@
-AM_CPPFLAGS = @CLASSPATH_INCLUDES@ `pkg-config  --cflags-only-I alsa`
-AM_CFLAGS = @WARNING_CFLAGS@ @STRICT_WARNING_CFLAGS@ @ERROR_CFLAGS@ `pkg-config --cflags-only-other alsa`
+AM_CPPFLAGS = @CLASSPATH_INCLUDES@ `pkg-config --cflags-only-I alsa`
+AM_CFLAGS = @WARNING_CFLAGS@ @STRICT_WARNING_CFLAGS@ `pkg-config --cflags-only-other alsa`


[commit-cp] classpath ChangeLog native/jni/midi-alsa/Makefi...

2007-09-08 Thread Michael Koch
CVSROOT:/sources/classpath
Module name:classpath
Changes by: Michael Koch mkoch07/09/08 07:07:07

Modified files:
.  : ChangeLog 
native/jni/midi-alsa: Makefile.am 

Log message:
2007-09-08  Michael Koch  [EMAIL PROTECTED]

* native/jni/midi-alsa/Makefile.am (AM_CFLAGS):
Removed @ERROR_CFLAGS@ to not fail build with GCC 4.2.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpathr1=1.9376r2=1.9377
http://cvs.savannah.gnu.org/viewcvs/classpath/native/jni/midi-alsa/Makefile.am?cvsroot=classpathr1=1.5r2=1.6




Re: [cp-patches] Guidelines for annotations?

2007-03-09 Thread Michael Koch
On Fri, Mar 09, 2007 at 08:25:37PM +0100, Mario Torre wrote:
 Il giorno ven, 09/03/2007 alle 10.35 -0800, Keith Seitz ha scritto:
 
  @Override
  public void foo(); 
 
 I suggest this one. It seems more clear to me.

+1


Cheers,
Michael
-- 
 .''`.  | Michael Koch [EMAIL PROTECTED]
: :' :  | Free Java Developer http://www.classpath.org
`. `'   |
  `-| 1024D/BAC5 4B28 D436 95E6 F2E0 BD11 5923 A008 2763 483B



Re: [cp-patches] Guidelines for annotations?

2007-03-09 Thread Michael Koch
On Fri, Mar 09, 2007 at 12:05:42PM -0800, Keith Seitz wrote:
 Tom Tromey wrote:
 Mario == Mario Torre [EMAIL PROTECTED] writes:
 
 @Override
 public void foo(); 
 
 Me too.  Three votes... maybe the motion passes?  :)
 
 So that's several votes for this style already. One last question: what 
 about comments/javadoc?
 
 1) Before
 @Override
 /**
  * foo
  */
 
 2) After
 /**
  * foo
  */
 @Override
 
 I presume most people would prefer #1?

+1 for 2.


Michael
-- 
 .''`.  | Michael Koch [EMAIL PROTECTED]
: :' :  | Free Java Developer http://www.classpath.org
`. `'   |
  `-| 1024D/BAC5 4B28 D436 95E6 F2E0 BD11 5923 A008 2763 483B



Re: 10 years CACAO

2007-02-19 Thread Michael Koch
On Mon, Feb 19, 2007 at 12:23:49PM +0100, Christian Thalinger wrote:
 The CACAO virtual machine celebrates its 10th anniversary. On February
 14th 1997 CACAO 0.1 using the class library of the JDK 1.0.2 for the 
 Alpha processor under Digital Unix was put online on the web. Now CACAO
 supports Alpha, ARM, MIPS, PowerPC, Sparc, x86 and x86-64 processor
 under different operating systems. Major milestones were the new JIT
 compiler in the year 1998, the move to GNU Classpath library in 2003 and
 the release of most parts of CACAO under the GPL in 2004.
 
 We don't have a 10th-anniversary-release, but we can announce some other
 news: our previously closed-source JIT compiler ports for the Arm and
 MIPS (o32) architecture have been released also under the GPL.
 
 Furthermore, it is now possible to use Sun's phoneme CLDC-1.1 classes
 with CACAO out-of-the-box.
 
 Happy birthday to us!  And lets see what the next 10 years will bring...
 
 Your CACAO Team

Happy birthday.


Cheers,
Michael
 

-- 
 .''`.  | Michael Koch [EMAIL PROTECTED]
: :' :  | Free Java Developer http://www.classpath.org
`. `'   |
  `-| 1024D/BAC5 4B28 D436 95E6 F2E0 BD11 5923 A008 2763 483B



[cp-testresults] classpath daily snapshot 20070116 FAILED

2007-01-15 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070115 FAILED

2007-01-14 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070114 FAILED

2007-01-13 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070113 FAILED

2007-01-12 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070111 FAILED

2007-01-10 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070110 FAILED

2007-01-09 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070108 FAILED

2007-01-07 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070107 FAILED

2007-01-06 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070105 FAILED

2007-01-04 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070104 FAILED

2007-01-03 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070103 FAILED

2007-01-02 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20070101 FAILED

2006-12-31 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061231 FAILED

2006-12-30 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061228 FAILED

2006-12-27 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061227 FAILED

2006-12-26 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061226 FAILED

2006-12-25 Thread Michael Koch
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for getloadavg... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061224 FAILED

2006-12-23 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061222 FAILED

2006-12-21 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061220 FAILED

2006-12-19 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061219 FAILED

2006-12-18 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061218 FAILED

2006-12-17 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061217 FAILED

2006-12-16 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for ecj... no
checking for javac... no
configure: error: cannot find javac, try --with-ecj


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061213 FAILED

2006-12-12 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for gcjx... no
checking for ecj... no
configure: error: cannot find javac, try --with-ecj or --with-gcjx


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061212 FAILED

2006-12-11 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for gcjx... no
checking for ecj... no
configure: error: cannot find javac, try --with-ecj or --with-gcjx


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061211 FAILED

2006-12-10 Thread Michael Koch
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking crt_externs.h usability... no
checking crt_externs.h presence... no
checking for crt_externs.h... no
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking magic.h usability... no
checking magic.h presence... no
checking for magic.h... no
checking sys/event.h usability... no
checking sys/event.h presence... no
checking for sys/event.h... no
checking sys/epoll.h usability... no
checking sys/epoll.h presence... no
checking for sys/epoll.h... no
checking ifaddrs.h usability... no
checking ifaddrs.h presence... no
checking for ifaddrs.h... no
checking for ftruncate... yes
checking for fsync... yes
checking for select... yes
checking for gethostname... yes
checking for socket... yes
checking for strerror... yes
checking for fork... yes
checking for pipe... yes
checking for execve... yes
checking for open... yes
checking for close... yes
checking for lseek... yes
checking for fstat... yes
checking for read... yes
checking for readv... yes
checking for write... yes
checking for writev... yes
checking for htonl... yes
checking for memset... yes
checking for htons... yes
checking for connect... yes
checking for getsockname... yes
checking for getpeername... yes
checking for bind... yes
checking for listen... yes
checking for accept... yes
checking for recvfrom... yes
checking for send... yes
checking for sendto... yes
checking for setsockopt... yes
checking for getsockopt... yes
checking for time... yes
checking for mktime... yes
checking for gethostbyname_r... yes
checking for localtime_r... yes
checking for strerror_r... yes
checking for fcntl... yes
checking for mmap... yes
checking for munmap... yes
checking for mincore... yes
checking for msync... yes
checking for madvise... yes
checking for getpagesize... yes
checking for sysconf... yes
checking for lstat... yes
checking for readlink... yes
checking for inet_aton... yes
checking for inet_addr... yes
checking for inet_pton... yes
checking for getifaddrs... no
checking for kqueue... no
checking for kevent... no
checking for epoll_create... no
checking for readdir_r... yes
checking for magic_open in -lmagic... no
checking whether struct sockaddr_in6 is in netinet/in.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tm_gmtoff in struct tm... yes
checking for an ANSI C-conforming const... yes
checking for __attribute__... yes
checking for ld used by GCC... /usr/i486-suse-linux/bin/ld
checking if the linker (/usr/i486-suse-linux/bin/ld) is GNU ld... yes
checking for shared library run path origin... ../config.rpath: 
../config.rpath: No such file or directory
done
checking for iconv... yes
checking for iconv declaration... 
 extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
checking for MSG_NOSIGNAL... yes
checking for SO_NOSIGPIPE ... no
checking for gcjh... /usr/bin/gcjh
checking jni_md.h support... yes
checking for gcjx... no
checking for ecj... no
configure: error: cannot find javac, try --with-ecj or --with-gcjx


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061128 FAILED

2006-11-27 Thread Michael Koch
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   322. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   324. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   326. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   328. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   330. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.

Issued 1 semantic warning compiling 
../../external/sax/org/xml/sax/helpers/ParserAdapter.java:

   564. atts.addAttribute (nsSupport.XMLNS, prefix,
 ^---^
*** Semantic Warning: Accessing the class field XMLNS via an instance is 
discouraged because the field accessed will be the one in the variable's 
declared type, not the instance's dynamic type.

Issued 1 semantic warning compiling 
../../javax/swing/tree/DefaultTreeCellEditor.java:

   102. public void EditorContainer()
   ^--^
*** Semantic Warning: The name of this method EditorContainer matches the 
name of the containing class. However, the method is not a constructor since 
its declarator is qualified with a type.

Issued 2 semantic warnings compiling 
../../javax/swing/plaf/metal/MetalSliderUI.java:

   129.   protected final int TICK_BUFFER = 4;
  ^-^
*** Semantic Warning: Final field TICK_BUFFER is initialized with a constant 
expression and could be made static to save space.


   132.   protected final String SLIDER_FILL = JSlider.isFilled;
 ^--^
*** Semantic Warning: Final field SLIDER_FILL is initialized with a constant 
expression and could be made static to save space.

Issued 1 semantic warning compiling 
../../javax/swing/plaf/basic/BasicInternalFrameUI.java:

   178. protected final int RESIZE_NONE = 0;
^-^
*** Semantic Warning: Final field RESIZE_NONE is initialized with a constant 
expression and could be made static to save space.

Issued 1 lexical warning in 
../../gnu/java/rmi/registry/RegistryImpl_Stub.java:

61. private static java.lang.reflect.Method $method_bind_0;
^^
*** Lexical Warning: The use of $ in an identifier, while legal, is strongly 
discouraged, since it can conflict with compiler-generated names. If you are 
trying to access a nested type, use . instead of $.
touch compile-classes
touch resources
if test /usr/bin/zip != ; then /usr/bin/zip -r -D glibj.zip gnu java javax 
org sun META-INF  /dev/null; fi
if test  != ; then  cf glibj.zip gnu java javax org sun META-INF; fi
make[2]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20061128/_build/lib'
Making all in doc
make[2]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20061128/_build/doc'
Making all in api
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20061128/_build/doc/api'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20061128/_build/doc/api'
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20061128/_build/doc'
restore=:  backupdir=.am$$  \
am__cwd=`pwd`  cd ../../doc  \
rm -rf $backupdir  mkdir $backupdir  \
for f in ../../doc/tools.info ../../doc/tools.info-[0-9] 
../../doc/tools.info-[0-9][0-9] ../../doc/tools.i[0-9] 
../../doc/tools.i[0-9][0-9]; do \
  if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
done; \
cd $am__cwd; \
if /bin/sh /home/mkoch/src/classpath/build/classpath-20061128/missing --run 
makeinfo   -I ../../doc \
 -o ../../doc/tools.info ../../doc/tools.texinfo; \
then \
  rc=0; \
  cd ../../doc; \
else \
  rc=$?; \
  cd ../../doc  \
  $restore $backupdir/* `echo ./../../doc/tools.info | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
mkdir: cannot create directory `.am18099': Permission denied
../../doc/tools.info: Permission denied
make[3]: *** [../../doc/tools.info] Error 1
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20061128/_build/doc'

[cp-testresults] classpath daily snapshot 20061126 FAILED

2006-11-25 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061124 FAILED

2006-11-24 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061125 FAILED

2006-11-24 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061122 FAILED

2006-11-21 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

Re: The Generics Branch: A Proposal

2006-11-19 Thread Michael Koch
On Sat, Nov 18, 2006 at 06:22:19PM +, Andrew John Hughes wrote:
 Hi everyone,
 
 Now that:
 
 a) gcj has branched for 4.2 and the gcj-eclipse branch is moving
 to trunk
 b) there is another Free 1.5 compiler in the form of Sun's javac
 c) most VMs have support for at least some of the 1.5 native stuff
 
 I'd like to suggest that we merge the generics branch to HEAD, following
 the branch for 0.93 (making 0.93 the last non-generics version of GNU
 Classpath, and 0.94 the first generics one).
 
 What do people think?

+1

This would make many things for distros more easy.


Cheers,
Michael
-- 
http://www.worldforge.org/



[cp-testresults] classpath daily snapshot 20061119 FAILED

2006-11-18 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061116 FAILED

2006-11-16 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061115 FAILED

2006-11-14 Thread Michael Koch
update cvs source tree
cvs [update aborted]: connect to cvs.savannah.gnu.org(199.232.41.69):2401 
failed: Connection timed out


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061113 FAILED

2006-11-13 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061111 FAILED

2006-11-10 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061110 FAILED

2006-11-09 Thread Michael Koch
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   310. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   312. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   314. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   316. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   318. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   320. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   322. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   324. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   326. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   328. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   330. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.

Found 1 semantic error compiling ../../javax/swing/text/html/StyleSheet.java:

   106.   class CSSStyleSheetParserCallback
^-^
*** Semantic Error: The abstract method void 
startStatement(gnu.javax.swing.text.html.css.Selector selector);, inherited 
from type gnu.javax.swing.text.html.css.CSSParserCallback, is not implemented 
in the non-abstract class 
javax.swing.text.html.StyleSheet$CSSStyleSheetParserCallback.

Issued 1 semantic warning compiling 
../../external/sax/org/xml/sax/helpers/ParserAdapter.java:

   564. atts.addAttribute (nsSupport.XMLNS, prefix,
 ^---^
*** Semantic Warning: Accessing the class field XMLNS via an instance is 
discouraged because the field accessed will be the one in the variable's 
declared type, not the instance's dynamic type.

Issued 1 semantic warning compiling 
../../javax/swing/tree/DefaultTreeCellEditor.java:

   102. public void EditorContainer()
   ^--^
*** Semantic Warning: The name of this method EditorContainer matches the 
name of the containing class. However, the method is not a constructor since 
its declarator is qualified with a type.

Issued 2 semantic warnings compiling 
../../javax/swing/plaf/metal/MetalSliderUI.java:

   129.   protected final int TICK_BUFFER = 4;
  ^-^
*** Semantic Warning: Final field TICK_BUFFER is initialized with a constant 
expression and could be made static to save space.


   132.   protected final String SLIDER_FILL = JSlider.isFilled;
 ^--^
*** Semantic Warning: Final field SLIDER_FILL is initialized with a constant 
expression and could be made static to save space.

Issued 1 semantic warning compiling 
../../javax/swing/plaf/basic/BasicInternalFrameUI.java:

   178. protected final int RESIZE_NONE = 0;
^-^
*** Semantic Warning: Final field RESIZE_NONE is initialized with a constant 
expression and could be made static to save space.

Issued 1 lexical warning in 
../../gnu/java/rmi/registry/RegistryImpl_Stub.java:

61. private static java.lang.reflect.Method $method_bind_0;
^^
*** Lexical Warning: The use of $ in an identifier, while legal, is strongly 
discouraged, since it can conflict with compiler-generated names. If you are 
trying 

[cp-testresults] classpath daily snapshot 20061108 FAILED

2006-11-07 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061107 FAILED

2006-11-06 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061106 FAILED

2006-11-05 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

Re: glibj-generics-latest.zip on builder old?

2006-11-05 Thread Michael Koch
On Mon, Nov 06, 2006 at 01:45:09AM +0100, Mark Wielaard wrote:
 Hi,
 
 On Mon, 2006-11-06 at 01:11 +0100, Mark Wielaard wrote:
  On Fri, 2006-11-03 at 10:12 -0500, Stuart Ballard wrote:
   On 11/1/06, Mark Wielaard [EMAIL PROTECTED] wrote:
Looking through the log it is:
1729. ERROR in ../../classpath/java/util/EnumSet.java (at line 252)
return copyOf((EnumSetT) other);
   ^^
The method copyOf(EnumSetT) is ambiguous for the type EnumSetT
   
   So do we reckon this is a Classpath bug or an ecj issue? Andrew,
   presumably -generics builds for you - how does your ecj version
   compare to the one on builder?
  
  This seems to have been fixed now. Although I am not sure how that
  happened precisely. The ecj version used on builder is: Eclipse Java
  Compiler 0.722, 3.3.0 milestone-3
 
 OK, sorry, my mistake. I wasn't looking at the right log file. It seems
 to be broken for current ecj CVS. So I made builder use the installed
 ecj for now (v_585_R31x, 3.1.2 release) and now it compiles also on
 builder again.
 
 If it really is a bug in the ecj (org.eclipse.jdt.core) CVS version then
 we should create a bug report. Could someone familiar with EnumSet take
 a look?

Afaik the Harmony people had a similar bug with ecj and reported this.
I dont have a link yet but I can look into this tonite.


Cheers,
Michael
-- 
http://www.worldforge.org/



[cp-testresults] classpath daily snapshot 20061105 FAILED

2006-11-04 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061103 FAILED

2006-11-02 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061101 FAILED

2006-11-01 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061102 FAILED

2006-11-01 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061029 FAILED

2006-10-29 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061030 FAILED

2006-10-29 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

Re: plugin for mozilla/firefox

2006-10-29 Thread Michael Koch
On Sun, Oct 29, 2006 at 10:41:04AM +, Andrew John Hughes wrote:
 On Sun, 2006-10-29 at 09:31 +0200, Dima Sorkin wrote:
  Hi.
   Does Classpath or GCJ come
  with Mozilla/Firefox plugin ?
  
  I tried to compile Classpath, but it says
  my GCJ ((GCC) 4.0.0) is already too old.
  
  I don't want to compile things. I would
  prefer a binary distribution with
  installation guide and a list of dependencies.
  
  Regards and thank you,
   Dima.
 
 Hi Dima,
 
 You don't say which platform you're using.  If you're using a recent
 GNU/Linux distribution, there should be packages for GNU Classpath.
 0.92 was the first to include the Mozilla/Firefox plugin, but earlier
 versions may be packaged separately as gcjwebplugin.  It won't appear as
 part of gcj until at least 4.2.

Not completely true.

In Debian its in gcj starting with 4.1 as we merged CP 0.92 into it.
This patch came from Fedora Core. Ubuntu uses the same 4.1 then Debian
does.


Cheers,
Michael
-- 
http://www.worldforge.org/



[cp-testresults] classpath daily snapshot 20061026 FAILED

2006-10-26 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061027 FAILED

2006-10-26 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061023 FAILED

2006-10-22 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061022 FAILED

2006-10-21 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061019 FAILED

2006-10-20 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061021 FAILED

2006-10-20 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061017 FAILED

2006-10-16 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061016 FAILED

2006-10-15 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061015 FAILED

2006-10-14 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061014 FAILED

2006-10-13 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061013 FAILED

2006-10-12 Thread Michael Koch
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   310. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   312. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   314. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   316. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   318. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   320. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   322. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   324. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   326. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   328. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   330. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.

Issued 1 semantic warning compiling 
../../external/sax/org/xml/sax/helpers/ParserAdapter.java:

   564. atts.addAttribute (nsSupport.XMLNS, prefix,
 ^---^
*** Semantic Warning: Accessing the class field XMLNS via an instance is 
discouraged because the field accessed will be the one in the variable's 
declared type, not the instance's dynamic type.

Found 1 semantic error compiling 
../../javax/swing/tree/DefaultTreeSelectionModel.java:

   205. cloned.selection = selection.clone();
^--^
*** Semantic Error: The type of the right sub-expression, java.lang.Object, 
is not assignable to the variable, of type javax.swing.tree.TreePath[].

Issued 1 semantic warning compiling 
../../javax/swing/tree/DefaultTreeCellEditor.java:

   102. public void EditorContainer()
   ^--^
*** Semantic Warning: The name of this method EditorContainer matches the 
name of the containing class. However, the method is not a constructor since 
its declarator is qualified with a type.

Issued 2 semantic warnings compiling 
../../javax/swing/plaf/metal/MetalSliderUI.java:

   129.   protected final int TICK_BUFFER = 4;
  ^-^
*** Semantic Warning: Final field TICK_BUFFER is initialized with a constant 
expression and could be made static to save space.


   132.   protected final String SLIDER_FILL = JSlider.isFilled;
 ^--^
*** Semantic Warning: Final field SLIDER_FILL is initialized with a constant 
expression and could be made static to save space.

Issued 1 semantic warning compiling 
../../javax/swing/plaf/basic/BasicInternalFrameUI.java:

   178. protected final int RESIZE_NONE = 0;
^-^
*** Semantic Warning: Final field RESIZE_NONE is initialized with a constant 
expression and could be made static to save space.

Issued 1 lexical warning in 
../../gnu/java/rmi/registry/RegistryImpl_Stub.java:

61. private static java.lang.reflect.Method $method_bind_0;
^^
*** Lexical Warning: The use of $ in an identifier, while legal, is strongly 
discouraged, since it can conflict with compiler-generated names. If you are 
trying to access a nested type, use . instead of $.
make[1]: *** [compile-classes] Error 1
make[1]: Leaving directory 

[cp-testresults] classpath daily snapshot 20061012 FAILED

2006-10-11 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

Re: [cp-testresults] classpath daily snapshot 20061009 FAILED

2006-10-09 Thread Michael Koch
On Mon, Oct 09, 2006 at 08:16:38AM +0200, Mark Wielaard wrote:
 Hi Michael,
 
 On Mon, 2006-10-09 at 05:53 +0200, Michael Koch wrote:
   gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-net 
  -I../../../include -I../../../../include -I../../../../native/jni/classpath 
  -I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
  -Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
  -pedantic -g -O2 -MT java_net_VMInetAddress.lo -MD -MP -MF 
  .deps/java_net_VMInetAddress.Tpo -c 
  ../../../../native/jni/java-net/java_net_VMInetAddress.c  -fPIC -DPIC -o 
  .libs/java_net_VMInetAddress.o
  if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
  -I../../../../native/jni/java-net -I../../../include  -I../../../../include 
  -I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
  -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
  -Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT 
  java_net_VMNetworkInterface.lo -MD -MP -MF 
  .deps/java_net_VMNetworkInterface.Tpo -c -o 
  java_net_VMNetworkInterface.lo 
  ../../../../native/jni/java-net/java_net_VMNetworkInterface.c; \
  then mv -f .deps/java_net_VMNetworkInterface.Tpo 
  .deps/java_net_VMNetworkInterface.Plo; else rm -f 
  .deps/java_net_VMNetworkInterface.Tpo; exit 1; fi
   gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-net 
  -I../../../include -I../../../../include -I../../../../native/jni/classpath 
  -I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
  -Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
  -pedantic -g -O2 -MT java_net_VMNetworkInterface.lo -MD -MP -MF 
  .deps/java_net_VMNetworkInterface.Tpo -c 
  ../../../../native/jni/java-net/java_net_VMNetworkInterface.c  -fPIC -DPIC 
  -o .libs/java_net_VMNetworkInterface.o
  ../../../../native/jni/java-net/java_net_VMNetworkInterface.c:44:21: 
  ifaddrs.h: No such file or directory
  ../../../../native/jni/java-net/java_net_VMNetworkInterface.c: In function 
  `Java_java_net_VMNetworkInterface_getVMInterfaces':
  ../../../../native/jni/java-net/java_net_VMNetworkInterface.c:112: warning: 
  unused parameter `clazz'
  /usr/include/bits/string2.h: At top level:
  ../../../../native/jni/java-net/java_net_VMNetworkInterface.c:99: warning: 
  `free_netif_list' defined but not used
  make[3]: *** [java_net_VMNetworkInterface.lo] Error 1
  make[3]: Leaving directory 
  `/home/mkoch/src/classpath/build/native/jni/java-net'
  make[2]: *** [all-recursive] Error 1
  make[2]: Leaving directory `/home/mkoch/src/classpath/build/native/jni'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory `/home/mkoch/src/classpath/build/native'
  make: *** [all-recursive] Error 1
 
 According to this error message we do detect that your system doesn't
 provide getifaddrs, but don't condition the includes correctly. What
 kind of system is this? 

That is Patrik Reali's Machine.

[EMAIL PROTECTED]:~ cat /etc/SuSE-release
SuSE Linux 8.1 (i386)
VERSION = 8.1

It uses glibc 2.2.5

[EMAIL PROTECTED]:/usr/include rpm -qf /lib/libc.so.6
glibc-2.2.5-163

The header ifaddrs.h doesn't exist in this libc version. And the method
getifaddrs is not defined in any other header. This method seems to be
glibc 2.3 or newer only.

The question is now: Do we want to support glibc (and probably other
libc's for embedded targets) that lack this method? Perhaps we can just
throw some exception on these systems.


Cheers,
Michael
-- 
http://www.worldforge.org/


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20061010 FAILED

2006-10-09 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061009 FAILED

2006-10-08 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061006 FAILED

2006-10-05 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061004 FAILED

2006-10-03 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20061003 FAILED

2006-10-02 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20060927 FAILED

2006-09-26 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20060926 FAILED

2006-09-25 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20060925 FAILED

2006-09-24 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes -pedantic  -g -O2 -module -version-info 0:0:0 -no-undefined 
 -o libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  -W 
-Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes -pedantic  -g -O2 -MT java_io_VMFile.lo -MD 
-MP -MF .deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes 
-pedantic -g -O2 -MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20060924 FAILED

2006-09-23 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -pedantic -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes  -g -O2 -module -version-info 0:0:0 -no-undefined  -o 
libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT java_io_VMFile.lo -MD -MP -MF 
.deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20060923 FAILED

2006-09-22 Thread Michael Koch
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
../../../../native/jni/native-lib/cpio.c: In function `cpio_readDir':
../../../../native/jni/native-lib/cpio.c:473: warning: passing arg 1 of 
`memcpy' discards qualifiers from pointer target type
../../../../native/jni/native-lib/cpio.c:473: warning: passing arg 1 of 
`strncpy' discards qualifiers from pointer target type
../../../../native/jni/native-lib/cpio.c:473: warning: passing arg 1 of 
`strncpy' discards qualifiers from pointer target type
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -pedantic -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes  -g -O2 -module -version-info 0:0:0 -no-undefined  -o 
libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT java_io_VMFile.lo -MD -MP -MF 
.deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long 

[cp-testresults] classpath daily snapshot 20060920 FAILED

2006-09-19 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -pedantic -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes  -g -O2 -module -version-info 0:0:0 -no-undefined  -o 
libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT java_io_VMFile.lo -MD -MP -MF 
.deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20060919 FAILED

2006-09-18 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -pedantic -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes  -g -O2 -module -version-info 0:0:0 -no-undefined  -o 
libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT java_io_VMFile.lo -MD -MP -MF 
.deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[cp-testresults] classpath daily snapshot 20060918 FAILED

2006-09-17 Thread Michael Koch
ranlib .libs/libclasspath.a
creating libclasspath.la
(cd .libs  rm -f libclasspath.la  ln -s ../libclasspath.la libclasspath.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/classpath'
Making all in native-lib
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpnet.lo -MD -MP -MF 
.deps/cpnet.Tpo -c -o cpnet.lo ../../../../native/jni/native-lib/cpnet.c; \
then mv -f .deps/cpnet.Tpo .deps/cpnet.Plo; else rm -f .deps/cpnet.Tpo; 
exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpnet.lo -MD -MP -MF .deps/cpnet.Tpo -c 
../../../../native/jni/native-lib/cpnet.c  -fPIC -DPIC -o .libs/cpnet.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpio.lo -MD -MP -MF 
.deps/cpio.Tpo -c -o cpio.lo ../../../../native/jni/native-lib/cpio.c; \
then mv -f .deps/cpio.Tpo .deps/cpio.Plo; else rm -f .deps/cpio.Tpo; exit 
1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpio.lo -MD -MP -MF .deps/cpio.Tpo -c 
../../../../native/jni/native-lib/cpio.c  -fPIC -DPIC -o .libs/cpio.o
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/native-lib -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT cpproc.lo -MD -MP -MF 
.deps/cpproc.Tpo -c -o cpproc.lo ../../../../native/jni/native-lib/cpproc.c; \
then mv -f .deps/cpproc.Tpo .deps/cpproc.Plo; else rm -f 
.deps/cpproc.Tpo; exit 1; fi
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/native-lib -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT cpproc.lo -MD -MP -MF .deps/cpproc.Tpo -c 
../../../../native/jni/native-lib/cpproc.c  -fPIC -DPIC -o .libs/cpproc.o
/bin/sh ../../../libtool --mode=link --tag=CC gcc -pedantic -W -Wall 
-Wmissing-declarations -Wwrite-strings -Wmissing-prototypes -Wno-long-long 
-Wstrict-prototypes  -g -O2 -module -version-info 0:0:0 -no-undefined  -o 
libclasspathnative.la   cpnet.lo cpio.lo cpproc.lo  
libtool: link: warning: `-version-info/-version-number' is ignored for 
convenience libraries
ar cru .libs/libclasspathnative.a .libs/cpnet.o .libs/cpio.o .libs/cpproc.o
ranlib .libs/libclasspathnative.a
creating libclasspathnative.la
(cd .libs  rm -f libclasspathnative.la  ln -s ../libclasspathnative.la 
libclasspathnative.la)
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/native/jni/native-lib'
Making all in java-io
make[3]: Entering directory `/home/mkoch/src/classpath/build/native/jni/java-io'
if /bin/sh ../../../libtool --mode=compile --tag=CC gcc -DHAVE_CONFIG_H -I. 
-I../../../../native/jni/java-io -I../../../include  -I../../../../include 
-I../../../../native/jni/classpath -I../../../../native/jni/native-lib  
-pedantic -W -Wall -Wmissing-declarations -Wwrite-strings -Wmissing-prototypes 
-Wno-long-long -Wstrict-prototypes  -g -O2 -MT java_io_VMFile.lo -MD -MP -MF 
.deps/java_io_VMFile.Tpo -c -o java_io_VMFile.lo 
../../../../native/jni/java-io/java_io_VMFile.c; \
then mv -f .deps/java_io_VMFile.Tpo .deps/java_io_VMFile.Plo; else rm -f 
.deps/java_io_VMFile.Tpo; exit 1; fi
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../../../../native/jni/java-io -I../../../include 
-I../../../../include -I../../../../native/jni/classpath 
-I../../../../native/jni/native-lib -pedantic -W -Wall -Wmissing-declarations 
-Wwrite-strings -Wmissing-prototypes -Wno-long-long -Wstrict-prototypes -g -O2 
-MT java_io_VMFile.lo -MD -MP -MF .deps/java_io_VMFile.Tpo -c 
../../../../native/jni/java-io/java_io_VMFile.c  

[commit-cp] classpath ChangeLog include/gnu_java_awt_peer_g...

2006-09-15 Thread Michael Koch
CVSROOT:/sources/classpath
Module name:classpath
Changes by: Michael Koch mkoch06/09/15 17:58:22

Modified files:
.  : ChangeLog 
include: gnu_java_awt_peer_gtk_CairoSurface.h 

Log message:
2006-09-14  Michael Koch  [EMAIL PROTECTED]

   * include/gnu_java_awt_peer_gtk_CairoGraphics2D.h: Recreated.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/classpath/ChangeLog?cvsroot=classpathr1=1.8547r2=1.8548
http://cvs.savannah.gnu.org/viewcvs/classpath/include/gnu_java_awt_peer_gtk_CairoSurface.h?cvsroot=classpathr1=1.6r2=1.7




Re: Debian dependencies for Classpath package

2006-09-12 Thread Michael Koch
On Tue, Sep 12, 2006 at 10:22:35AM +0100, Chris Burdess wrote:
 I'm building Classpath on a virgin Debian system and I was quite
 surprised at some of the package dependencies for the classpath package.
 
 Beyond the dependencies listed in the documentation, plus libx11-dev,
 libgtk2.0-dev, jikes, and their dependencies, we have:
 
   antlr
   build-essential
   cdbs
   comerr-dev
   debhelper
   dpatch
   dssi-dev
   gettext
   gjdoc
   html2text
   intltool-debian
   ladspa-sdk
   libart-2.0-dev
   libasound2-dev
   libaudio-dev
   libgl1-mesa-dev
   libgl1-mesa-dri
   libglu1-mesa-dev
   libglu1-xorg-dev
   libjack0.100.0-dev
   libjpeg62-dev
   libkadm55
   libkrb5-dev
   liblcms1-dev
   libmng-dev
   libmysqlclient15off
   libpq-dev
   libqt4-dev
   libqt4-qt3support
   libqt4-sql
   libsqlite0
   libssl-dev
   libxmu-dev
   libxmu-headers
   libxt-dev
   libxtst-dev
   mesa-common-dev
   mysql-common po-debconf
   x11proto-record-dev
   xlibmesa-gl-dev
   zip
   libgconf2-dev
   libidl-dev
   liborbit2-dev
   libpopt-dev
   orbit2
 
 I'm especially surprised about the mysql dependency. Is all this really
 necessary?

Classpath doesnt depend on the Mysql stuff directly. Its sucked in by
QT4.


Cheers,
Michael
-- 
http://www.worldforge.org/



[cp-testresults] classpath daily snapshot 20060731 FAILED

2006-07-30 Thread Michael Koch
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   324. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   326. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   328. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   330. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.

Issued 1 semantic warning compiling 
../../external/sax/org/xml/sax/helpers/ParserAdapter.java:

   564. atts.addAttribute (nsSupport.XMLNS, prefix,
 ^---^
*** Semantic Warning: Accessing the class field XMLNS via an instance is 
discouraged because the field accessed will be the one in the variable's 
declared type, not the instance's dynamic type.

Issued 1 semantic warning compiling 
../../javax/swing/tree/DefaultTreeCellEditor.java:

   109. public void EditorContainer()
   ^--^
*** Semantic Warning: The name of this method EditorContainer matches the 
name of the containing class. However, the method is not a constructor since 
its declarator is qualified with a type.

Issued 2 semantic warnings compiling 
../../javax/swing/plaf/metal/MetalSliderUI.java:

   129.   protected final int TICK_BUFFER = 4;
  ^-^
*** Semantic Warning: Final field TICK_BUFFER is initialized with a constant 
expression and could be made static to save space.


   132.   protected final String SLIDER_FILL = JSlider.isFilled;
 ^--^
*** Semantic Warning: Final field SLIDER_FILL is initialized with a constant 
expression and could be made static to save space.

Issued 1 semantic warning compiling 
../../javax/swing/plaf/basic/BasicInternalFrameUI.java:

   178. protected final int RESIZE_NONE = 0;
^-^
*** Semantic Warning: Final field RESIZE_NONE is initialized with a constant 
expression and could be made static to save space.

Issued 1 lexical warning in 
../../gnu/java/rmi/registry/RegistryImpl_Stub.java:

61. private static java.lang.reflect.Method $method_bind_0;
^^
*** Lexical Warning: The use of $ in an identifier, while legal, is strongly 
discouraged, since it can conflict with compiler-generated names. If you are 
trying to access a nested type, use . instead of $.
touch compile-classes
if ! [ -e gnu ]; then mkdir gnu; fi
if ! [ -e gnu/java ]; then mkdir gnu/java; fi
if ! [ -e gnu/java/locale ]; then mkdir gnu/java/locale; fi
if ! [ -e gnu/javax/swing/plaf/gtk/icons ]; then mkdir -p 
gnu/javax/swing/plaf/gtk/icons; fi
touch resources
if test /usr/bin/zip != ; then /usr/bin/zip -r -D glibj.zip gnu java javax 
org sun META-INF  /dev/null; fi
if test  != ; then  cf glibj.zip gnu java javax org sun META-INF; fi
make[2]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20060731/_build/lib'
Making all in doc
make[2]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060731/_build/doc'
Making all in api
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060731/_build/doc/api'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20060731/_build/doc/api'
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060731/_build/doc'
restore=:  backupdir=.am$$  \
am__cwd=`pwd`  cd ../../doc  \
rm -rf $backupdir  mkdir $backupdir  \
for f in ../../doc/tools.info ../../doc/tools.info-[0-9] 
../../doc/tools.info-[0-9][0-9] ../../doc/tools.i[0-9] 
../../doc/tools.i[0-9][0-9]; do \
  if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
done; \
cd $am__cwd; \
if /bin/sh /home/mkoch/src/classpath/build/classpath-20060731/missing --run 
makeinfo   -I ../../doc \
 -o ../../doc/tools.info ../../doc/tools.texinfo; \
then \
  rc=0; \
  cd ../../doc; \
else \
  rc=$?; \
  cd ../../doc  \
  $restore $backupdir/* `echo ./../../doc/tools.info | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
mkdir: cannot create directory `.am4953': Permission denied
../../doc/tools.info: Permission denied
make[3]: *** [../../doc/tools.info] Error 1
make[3]: Leaving directory 

Re: [cp-testresults] classpath daily snapshot 20060729 FAILED

2006-07-29 Thread Michael Koch
On Sat, Jul 29, 2006 at 12:14:31PM +0200, Mark Wielaard wrote:
 Hi Michael,
 
 On Sat, 2006-07-29 at 06:02 +0200, Michael Koch wrote:
  rm -rf $backupdir  mkdir $backupdir  \
  for f in ../../doc/tools.info ../../doc/tools.info-[0-9] 
  ../../doc/tools.info-[0-9][0-9] ../../doc/tools.i[0-9] 
  ../../doc/tools.i[0-9][0-9]; do \
if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
  done; \
  cd $am__cwd; \
  if /bin/sh /home/mkoch/src/classpath/build/classpath-20060729/missing --run 
  makeinfo   -I ../../doc \
   -o ../../doc/tools.info ../../doc/tools.texinfo; \
  then \
rc=0; \
cd ../../doc; \
  else \
rc=$?; \
cd ../../doc  \
$restore $backupdir/* `echo ./../../doc/tools.info | sed 's|[^/]*$||'`; 
  \
  fi; \
  rm -rf $backupdir; exit $rc
  mkdir: cannot create directory `.am8': Permission denied
  ../../doc/tools.info: Permission denied
  make[3]: *** [../../doc/tools.info] Error 1
  make[3]: Leaving directory 
  `/home/mkoch/src/classpath/build/classpath-20060729/_build/doc'
  make[2]: *** [all-recursive] Error 1
  make[2]: Leaving directory 
  `/home/mkoch/src/classpath/build/classpath-20060729/_build/doc'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory 
  `/home/mkoch/src/classpath/build/classpath-20060729/_build'
  make: *** [distcheck] Error 2
 
 Any idea what is causing this?

make distcheck seems to be broken.

When I do it in my normal environment it works (or seems to).
When I do it with DISTCHECK_CONFIGURE_FLAGS set as on the autobuilder it
fails.

DISTCHECK_CONFIGURE_FLAGS=--with-jikes=/home/mkoch/local/jikes/bin/jikes
--disable-Werror --disable-gtk-peer --disable-plugin
--disable-gconf-peer

So it seems to depend on the configure flags used. I bet Tom Tromey's
latest patch to tools/Makefile.am broke it.


Cheers,
Michael
-- 
http://www.worldforge.org/


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


[cp-testresults] classpath daily snapshot 20060729 FAILED

2006-07-28 Thread Michael Koch
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   324. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   326. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   328. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   330. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.

Issued 1 semantic warning compiling 
../../external/sax/org/xml/sax/helpers/ParserAdapter.java:

   564. atts.addAttribute (nsSupport.XMLNS, prefix,
 ^---^
*** Semantic Warning: Accessing the class field XMLNS via an instance is 
discouraged because the field accessed will be the one in the variable's 
declared type, not the instance's dynamic type.

Issued 1 semantic warning compiling 
../../javax/swing/tree/DefaultTreeCellEditor.java:

   109. public void EditorContainer()
   ^--^
*** Semantic Warning: The name of this method EditorContainer matches the 
name of the containing class. However, the method is not a constructor since 
its declarator is qualified with a type.

Issued 2 semantic warnings compiling 
../../javax/swing/plaf/metal/MetalSliderUI.java:

   129.   protected final int TICK_BUFFER = 4;
  ^-^
*** Semantic Warning: Final field TICK_BUFFER is initialized with a constant 
expression and could be made static to save space.


   132.   protected final String SLIDER_FILL = JSlider.isFilled;
 ^--^
*** Semantic Warning: Final field SLIDER_FILL is initialized with a constant 
expression and could be made static to save space.

Issued 1 semantic warning compiling 
../../javax/swing/plaf/basic/BasicInternalFrameUI.java:

   178. protected final int RESIZE_NONE = 0;
^-^
*** Semantic Warning: Final field RESIZE_NONE is initialized with a constant 
expression and could be made static to save space.

Issued 1 lexical warning in 
../../gnu/java/rmi/registry/RegistryImpl_Stub.java:

61. private static java.lang.reflect.Method $method_bind_0;
^^
*** Lexical Warning: The use of $ in an identifier, while legal, is strongly 
discouraged, since it can conflict with compiler-generated names. If you are 
trying to access a nested type, use . instead of $.
touch compile-classes
if ! [ -e gnu ]; then mkdir gnu; fi
if ! [ -e gnu/java ]; then mkdir gnu/java; fi
if ! [ -e gnu/java/locale ]; then mkdir gnu/java/locale; fi
if ! [ -e gnu/javax/swing/plaf/gtk/icons ]; then mkdir -p 
gnu/javax/swing/plaf/gtk/icons; fi
touch resources
if test /usr/bin/zip != ; then /usr/bin/zip -r -D glibj.zip gnu java javax 
org sun META-INF  /dev/null; fi
if test  != ; then  cf glibj.zip gnu java javax org sun META-INF; fi
make[2]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20060729/_build/lib'
Making all in doc
make[2]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060729/_build/doc'
Making all in api
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060729/_build/doc/api'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20060729/_build/doc/api'
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060729/_build/doc'
restore=:  backupdir=.am$$  \
am__cwd=`pwd`  cd ../../doc  \
rm -rf $backupdir  mkdir $backupdir  \
for f in ../../doc/tools.info ../../doc/tools.info-[0-9] 
../../doc/tools.info-[0-9][0-9] ../../doc/tools.i[0-9] 
../../doc/tools.i[0-9][0-9]; do \
  if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
done; \
cd $am__cwd; \
if /bin/sh /home/mkoch/src/classpath/build/classpath-20060729/missing --run 
makeinfo   -I ../../doc \
 -o ../../doc/tools.info ../../doc/tools.texinfo; \
then \
  rc=0; \
  cd ../../doc; \
else \
  rc=$?; \
  cd ../../doc  \
  $restore $backupdir/* `echo ./../../doc/tools.info | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
mkdir: cannot create directory `.am8': Permission denied
../../doc/tools.info: Permission denied
make[3]: *** [../../doc/tools.info] Error 1
make[3]: Leaving directory 

[cp-testresults] classpath daily snapshot 20060727 FAILED

2006-07-26 Thread Michael Koch
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   324. aa = aa  3 | aa  -3;
  ^^
*** Semantic Caution: The shift count -3 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   326. dd = dd  9 | dd  -9;
  ^^
*** Semantic Caution: The shift count -9 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   328. cc = cc  11 | cc  -11;
   ^-^
*** Semantic Caution: The shift count -11 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.


   330. bb = bb  15 | bb  -15;
   ^-^
*** Semantic Caution: The shift count -15 is negative; it will be masked to the 
appropriate width and behave as a positive shift count.

Issued 1 semantic warning compiling 
../../external/sax/org/xml/sax/helpers/ParserAdapter.java:

   564. atts.addAttribute (nsSupport.XMLNS, prefix,
 ^---^
*** Semantic Warning: Accessing the class field XMLNS via an instance is 
discouraged because the field accessed will be the one in the variable's 
declared type, not the instance's dynamic type.

Issued 1 semantic warning compiling 
../../javax/swing/tree/DefaultTreeCellEditor.java:

   109. public void EditorContainer()
   ^--^
*** Semantic Warning: The name of this method EditorContainer matches the 
name of the containing class. However, the method is not a constructor since 
its declarator is qualified with a type.

Issued 2 semantic warnings compiling 
../../javax/swing/plaf/metal/MetalSliderUI.java:

   129.   protected final int TICK_BUFFER = 4;
  ^-^
*** Semantic Warning: Final field TICK_BUFFER is initialized with a constant 
expression and could be made static to save space.


   132.   protected final String SLIDER_FILL = JSlider.isFilled;
 ^--^
*** Semantic Warning: Final field SLIDER_FILL is initialized with a constant 
expression and could be made static to save space.

Issued 1 semantic warning compiling 
../../javax/swing/plaf/basic/BasicInternalFrameUI.java:

   178. protected final int RESIZE_NONE = 0;
^-^
*** Semantic Warning: Final field RESIZE_NONE is initialized with a constant 
expression and could be made static to save space.

Issued 1 lexical warning in 
../../gnu/java/rmi/registry/RegistryImpl_Stub.java:

61. private static java.lang.reflect.Method $method_bind_0;
^^
*** Lexical Warning: The use of $ in an identifier, while legal, is strongly 
discouraged, since it can conflict with compiler-generated names. If you are 
trying to access a nested type, use . instead of $.
touch compile-classes
if ! [ -e gnu ]; then mkdir gnu; fi
if ! [ -e gnu/java ]; then mkdir gnu/java; fi
if ! [ -e gnu/java/locale ]; then mkdir gnu/java/locale; fi
if ! [ -e gnu/javax/swing/plaf/gtk/icons ]; then mkdir -p 
gnu/javax/swing/plaf/gtk/icons; fi
touch resources
if test /usr/bin/zip != ; then /usr/bin/zip -r -D glibj.zip gnu java javax 
org sun META-INF  /dev/null; fi
if test  != ; then  cf glibj.zip gnu java javax org sun META-INF; fi
make[2]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20060727/_build/lib'
Making all in doc
make[2]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060727/_build/doc'
Making all in api
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060727/_build/doc/api'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory 
`/home/mkoch/src/classpath/build/classpath-20060727/_build/doc/api'
make[3]: Entering directory 
`/home/mkoch/src/classpath/build/classpath-20060727/_build/doc'
restore=:  backupdir=.am$$  \
am__cwd=`pwd`  cd ../../doc  \
rm -rf $backupdir  mkdir $backupdir  \
for f in ../../doc/tools.info ../../doc/tools.info-[0-9] 
../../doc/tools.info-[0-9][0-9] ../../doc/tools.i[0-9] 
../../doc/tools.i[0-9][0-9]; do \
  if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \
done; \
cd $am__cwd; \
if /bin/sh /home/mkoch/src/classpath/build/classpath-20060727/missing --run 
makeinfo   -I ../../doc \
 -o ../../doc/tools.info ../../doc/tools.texinfo; \
then \
  rc=0; \
  cd ../../doc; \
else \
  rc=$?; \
  cd ../../doc  \
  $restore $backupdir/* `echo ./../../doc/tools.info | sed 's|[^/]*$||'`; \
fi; \
rm -rf $backupdir; exit $rc
mkdir: cannot create directory `.am7180': Permission denied
../../doc/tools.info: Permission denied
make[3]: *** [../../doc/tools.info] Error 1
make[3]: Leaving directory 

Re: [cp-patches] FYI: JTable fixlet:Mail Message possibly broken?

2006-07-25 Thread Michael Koch
On Tue, Jul 25, 2006 at 08:42:58AM +0200, Audrius Meskauskas wrote:
 The Thunderbird cannot open the attached patch which should be even not 
 compressed. I can easily open all other patches, including the patch on 
 LightweightDispatcher form Roman today. I would suggest to resend for 
 the peace of mind.

Its a 0-byte diff. This just means no changes. :-)


Michael
-- 
http://www.worldforge.org/



Re: Howto generate configure?

2006-07-21 Thread Michael Koch
On Fri, Jul 21, 2006 at 08:09:33AM +0200, Clemens Eisserer wrote:
 Hello again,
 
 Thanks for all the help and patience, its really seldom to get such
 amount help ... thanks!
 
 I now discovered that the debian-based Maemo-scartchbox SDK only comes
 with automake-1.8.5 whereas classpath requires at least 1.9 so it
 bails out with an error message - running autogen.sh on my Fedora Core
 4 box and trying to run the generated configure-file fails since
 symbolic links to e.g. config.sub are not valid.
 
 I fear I am not experienced enough to update the whole
 build-machinary, however running configure which is distributed as
 part of classpath-0.91 works perfektly.
 How do classpath-developers generate these file without running into
 problems with the symbolic link desaster I experienced.

As long as you build on the machine where you ran autogen.sh this is no
problem. When you want to use everything on a second machine you should
use make dist and use the created classpath-VERSION.tar.gz on the
other machine. It includes all files directly and no symlinks. This way
you can use the latest autotools from fedora and build easily in your
Maemo-scratchbox environemnt.


Cheers,
Michael
-- 
http://www.worldforge.org/



Re: Howto generate configure?

2006-07-21 Thread Michael Koch
On Fri, Jul 21, 2006 at 09:37:43AM +0200, Clemens Eisserer wrote:
 Hello again :-/
 
 Well as far as I know to be able to make dist I guess I have to run
 the generated configure-script first, however it fails saying GConf2
 is missing.
 However I've GConf2 installed, I even updated it to 2.14 to make sure
 I use an up-to-date version and its installed in default location ...
 will gconf2 also be needed for my embedded build?!
 
 I don't understand, classpath-0.91 builds so nicely but CVS only
 causes problems to me.
 As far as i know gconf was not needed, the downloadable tarball just
 compiled without causing any problems.
 
 Any ideas what could be wrong?

You need the gconf development files installed.

Its maybe possible to live without gconf bt configureing with
--disable-gconf.

The gconf support was added after 0.91 release. Another change is the
current CVS depends on newer GTK which Maemo afaik doesnt have. You will
need to update GTK on Maemo (which is a pain if not impossible to do on
your own).


Cheers,
Michael
-- 
http://www.worldforge.org/



[cp-testresults] classpath daily snapshot 20060717 FAILED

2006-07-16 Thread Michael Koch


   867. return viewFactory;
   ^-^
*** Semantic Error: The type of this return expression, 
javax.swing.text.html.HTMLEditorKit$HTMLFactory, does not match the return 
type of the method, javax.swing.text.ViewFactory.


   971.   super.read(in, doc, pos);
  ^--^
*** Semantic Error: No accessible method with signature read(java.io.Reader, 
javax.swing.text.Document, int) was found in type java.lang.Object.


   995.   super.write(out, doc, pos, len);
  ^-^
*** Semantic Error: No accessible method with signature write(java.io.Writer, 
javax.swing.text.Document, int, int) was found in type java.lang.Object.


  1017. return (HTMLEditorKit) super.clone();
   ^---^
*** Semantic Error: The method java.lang.Object clone() throws 
java.lang.CloneNotSupportedException; can throw the checked exception 
java.lang.CloneNotSupportedException, so its invocation must be enclosed in a 
try statement that catches the exception, or else this method must be declared 
to throw the exception.


  1043. super.install(c);
^--^
*** Semantic Error: No accessible method with signature 
install(javax.swing.JEditorPane) was found in type java.lang.Object.


  1045. c.addMouseListener(mouseListener);
^---^
*** Semantic Error: No applicable overload for a method with signature 
addMouseListener(javax.swing.text.html.HTMLEditorKit.LinkController) was 
found in type java.awt.Component. Perhaps you wanted the overloaded version 
void addMouseListener(java.awt.event.MouseListener listener); instead?


  1058. super.deinstall(c);
^^
*** Semantic Error: No accessible method with signature 
deinstall(javax.swing.JEditorPane) was found in type java.lang.Object.


  1059. c.removeMouseListener(mouseListener);
^--^
*** Semantic Error: No applicable overload for a method with signature 
removeMouseListener(javax.swing.text.html.HTMLEditorKit.LinkController) was 
found in type java.awt.Component. Perhaps you wanted the overloaded version 
void removeMouseListener(java.awt.event.MouseListener listener); instead?


  1086. return TextAction.augmentList(super.getActions(), defaultActions);
  ^^
*** Semantic Error: No accessible method with signature getActions() was 
found in type java.lang.Object.

Found 2 semantic errors compiling ../../javax/swing/JEditorPane.java:

   621. if (getEditorKit() instanceof HTMLEditorKit)
^-^
*** Semantic Error: The type of the left sub-expression, 
javax.swing.text.EditorKit, cannot possibly be an instance of type 
javax.swing.text.html.HTMLEditorKit.


   778. if (kit instanceof HTMLEditorKit  desc instanceof HTMLDocument)
^--^
*** Semantic Error: The type of the left sub-expression, 
javax.swing.text.EditorKit, cannot possibly be an instance of type 
javax.swing.text.html.HTMLEditorKit.

Found 1 semantic error compiling ../../javax/swing/plaf/basic/BasicHTML.java:

   409. HTMLRootView rootView = new HTMLRootView(c, view, kit, doc);
^-^
*** Semantic Error: No applicable overload was found for a constructor with 
signature HTMLRootView(javax.swing.JComponent, javax.swing.text.View, 
javax.swing.text.html.HTMLEditorKit, javax.swing.text.html.HTMLDocument) in 
type javax.swing.plaf.basic.BasicHTML$HTMLRootView. Perhaps you wanted the 
overloaded version HTMLRootView(javax.swing.JComponent c, 
javax.swing.text.View view, javax.swing.text.EditorKit kit, 
javax.swing.text.Document doc); instead?

Issued 1 semantic warning compiling 
../../external/sax/org/xml/sax/helpers/ParserAdapter.java:

   564. atts.addAttribute (nsSupport.XMLNS, prefix,
 ^---^
*** Semantic Warning: Accessing the class field XMLNS via an instance is 
discouraged because the field accessed will be the one in the variable's 
declared type, not the instance's dynamic type.

Issued 1 semantic warning compiling 
../../javax/swing/tree/DefaultTreeCellEditor.java:

   109. public void EditorContainer()
   ^--^
*** Semantic Warning: The name of this method EditorContainer matches the 
name of the containing class. However, the method is not a constructor since 
its declarator is qualified with a type.

Issued 2 semantic warnings compiling 
../../javax/swing/plaf/metal/MetalSliderUI.java:

   129.   protected final int TICK_BUFFER = 4;
  ^-^
*** Semantic Warning: Final field TICK_BUFFER is initialized with a constant 
expression and could be made static to 

[cp-testresults] classpath daily snapshot 20060712 FAILED

2006-07-13 Thread Michael Koch
update cvs source tree
Unknown host cvs.savannah.gnu.org.


___
Classpath-testresults mailing list
Classpath-testresults@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-testresults


Re: [cp-patches] FYI: X peers

2006-07-01 Thread Michael Koch
On Sat, Jul 01, 2006 at 10:33:10AM +0200, Roman Kennke wrote:
 Hi Raif,
 
 Am Samstag, den 01.07.2006, 09:24 +1000 schrieb Raif S. Naffah:
  hello Roman,
  
  On Friday 30 June 2006 01:27, Roman Kennke wrote:
   I checked in the Escher-based X peers and added some configury for
   enabling it. To build the X peers you need the most recent Escher
   library, to be found here:
  
   http://kennke.org/~roman/escher-0.3.0.jar
  
   Configure with: --with-escher=/path/to/escher-0.3.0.jar
   --enable-local-sockets
  
  would it make sense to create a new folder, say external-jars and 
  include the latest escher (and other java-only external dependencies) 
  jar(s) there.  --with-escher can use that jar/location by default, 
  otherwise the full path to a distro's/user's location of that jar can 
  be fed to configure.
 
 This makes sense. I am all for it.
 
 Mark proposed to put jars that are (optionally) needed for classpath on
 http://builder.classpath.org/ somewhere. What do others think?

Don't put jars without sources into classpath releases. Otherwise
Distros will need to alter the upstream tarball and remove this. And
altering removes the feature that people can easily check if the
upstream sources used by a distro is really what upstream released.


Michael
-- 
http://www.worldforge.org/



Re: [cp-patches] FYI: X peers

2006-07-01 Thread Michael Koch
On Sat, Jul 01, 2006 at 08:22:46PM +1000, Raif S. Naffah wrote:
 hello Michael,
 
 On Saturday 01 July 2006 20:05, Michael Koch wrote:
  On Sat, Jul 01, 2006 at 10:33:10AM +0200, Roman Kennke wrote:
   Am Samstag, den 01.07.2006, 09:24 +1000 schrieb Raif S. Naffah:
On Friday 30 June 2006 01:27, Roman Kennke wrote:
 I checked in the Escher-based X peers and added some configury
 for enabling it. To build the X peers you need the most recent
 Escher library, to be found here:

 http://kennke.org/~roman/escher-0.3.0.jar

 Configure with: --with-escher=/path/to/escher-0.3.0.jar
 --enable-local-sockets
   
would it make sense to create a new folder, say external-jars
and include the latest escher (and other java-only external
dependencies) jar(s) there.  --with-escher can use that
jar/location by default, otherwise the full path to a
distro's/user's location of that jar can be fed to configure.
  
   This makes sense. I am all for it.
  
   Mark proposed to put jars that are (optionally) needed for
   classpath on http://builder.classpath.org/ somewhere. What do
   others think?
 
  Don't put jars without sources into classpath releases. Otherwise
  Distros will need to alter the upstream tarball and remove this. And
  altering removes the feature that people can easily check if the
  upstream sources used by a distro is really what upstream released.
 
 would including the jar of the sources --e.g. escher-0.3.0.jar and 
 escher-0.3.0-src.jar-- address that concern.

Not for Debian as this makes it impossible to patch security issues
easily.


Cheers,
Michael
-- 
http://www.worldforge.org/



Re: [cp-patches] FYI: X peers

2006-07-01 Thread Michael Koch
On Sat, Jul 01, 2006 at 10:33:10AM +0200, Roman Kennke wrote:
 Hi Raif,
 
 Am Samstag, den 01.07.2006, 09:24 +1000 schrieb Raif S. Naffah:
  hello Roman,
  
  On Friday 30 June 2006 01:27, Roman Kennke wrote:
   I checked in the Escher-based X peers and added some configury for
   enabling it. To build the X peers you need the most recent Escher
   library, to be found here:
  
   http://kennke.org/~roman/escher-0.3.0.jar
  
   Configure with: --with-escher=/path/to/escher-0.3.0.jar
   --enable-local-sockets
  
  would it make sense to create a new folder, say external-jars and 
  include the latest escher (and other java-only external dependencies) 
  jar(s) there.  --with-escher can use that jar/location by default, 
  otherwise the full path to a distro's/user's location of that jar can 
  be fed to configure.
 
 This makes sense. I am all for it.
 
 Mark proposed to put jars that are (optionally) needed for classpath on
 http://builder.classpath.org/ somewhere. What do others think?

Don't put jars without sources into classpath releases. Otherwise
Distros will need to alter the upstream tarball and remove this. And
altering removes the feature that people can easily check if the
upstream sources used by a distro is really what upstream released.


Michael
-- 
http://www.worldforge.org/



Re: [cp-patches] FYI: X peers

2006-07-01 Thread Michael Koch
On Sat, Jul 01, 2006 at 08:22:46PM +1000, Raif S. Naffah wrote:
 hello Michael,
 
 On Saturday 01 July 2006 20:05, Michael Koch wrote:
  On Sat, Jul 01, 2006 at 10:33:10AM +0200, Roman Kennke wrote:
   Am Samstag, den 01.07.2006, 09:24 +1000 schrieb Raif S. Naffah:
On Friday 30 June 2006 01:27, Roman Kennke wrote:
 I checked in the Escher-based X peers and added some configury
 for enabling it. To build the X peers you need the most recent
 Escher library, to be found here:

 http://kennke.org/~roman/escher-0.3.0.jar

 Configure with: --with-escher=/path/to/escher-0.3.0.jar
 --enable-local-sockets
   
would it make sense to create a new folder, say external-jars
and include the latest escher (and other java-only external
dependencies) jar(s) there.  --with-escher can use that
jar/location by default, otherwise the full path to a
distro's/user's location of that jar can be fed to configure.
  
   This makes sense. I am all for it.
  
   Mark proposed to put jars that are (optionally) needed for
   classpath on http://builder.classpath.org/ somewhere. What do
   others think?
 
  Don't put jars without sources into classpath releases. Otherwise
  Distros will need to alter the upstream tarball and remove this. And
  altering removes the feature that people can easily check if the
  upstream sources used by a distro is really what upstream released.
 
 would including the jar of the sources --e.g. escher-0.3.0.jar and 
 escher-0.3.0-src.jar-- address that concern.

Not for Debian as this makes it impossible to patch security issues
easily.


Cheers,
Michael
-- 
http://www.worldforge.org/



Re: [cp-patches] X/Escher peers

2006-06-30 Thread Michael Koch
On Thu, Jun 29, 2006 at 11:28:52PM +0100, Andrew John Hughes wrote:
 I second that.  Putting it in external/ would be best, at least until
 the distributions pick up on it and start including it in a uniform way.

I second that too. But please do it in a way where distros can decide
the use the one in external/ or the system installed escher.


Michael
-- 
http://www.worldforge.org/



  1   2   3   4   5   6   7   >