Re: [kaffe] Native library libnull.so

2005-10-20 Thread Gianluca Moro

 The idea is to check a proprty that tells Kaffe which native library
 to 
 load for the native implementation of the AWT code. In your case, I 
 guess, you'd need to add -Dkaffe.awt.nativelib=xawt (assuming that's 
 what you compiled against) to your command line invocation. You
 should 
 also get the same result by just using
 
 kaffe -Xkaffe-xlib-awt HelloWorld
 

Thank you very much: I got it
The problem was tht the xawt library was not compiled
as in the libraries/clib/awt/Makefile the line
#MAYBE_KAFFE_X_AWT = X
was commented (I thought that, with the --with-x option
in the configure I should have it compiled)
Anyway I uncommented and made make again.
The -D option get the correct library (while if I use
the -Xkaffe-xlib-awt options I get an
Error: Unrecognized JVM specific option `-Xkaffe-xlib-awt'.

Now kaffe starts correctly (I have another problem,
I descrive in the next mail :-(

thanks again
giammy


--
Gianluca Moro  http://groups.yahoo.com/group/embeddeditalia/
ISCRIVITI alla Mailing List Italiana su LINUX EMBEDDED
[EMAIL PROTECTED]   Visit http://ilpinguino.altervista.org/



___ 
Yahoo! Messenger: chiamate gratuite in tutto il mondo 
http://it.messenger.yahoo.com

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] minor bug

2005-10-20 Thread Gianluca Moro
Hi all,

in file

kaffe-1.1.6/libraries/clib/awt/X/fnt.c

line 264

KAFFE_FONT_FUNC_DECL( void, Java_java_awt_Toolkit_fntFreeFontMetrics 
{
}

there's a missing ')' at the end of the definition
(happens undefining KAFFE_I18N)

By the way: can I18N b the cause of my not seeing
any string (Tiny-X does support I18N?)

bye
giammy




--
Gianluca Moro  http://groups.yahoo.com/group/embeddeditalia/
ISCRIVITI alla Mailing List Italiana su LINUX EMBEDDED
[EMAIL PROTECTED]   Visit http://ilpinguino.altervista.org/






___ 
Yahoo! Mail: gratis 1GB per i messaggi e allegati da 10MB 
http://mail.yahoo.it

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] CVS kaffe (kaz): libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,

2005-10-20 Thread Kaffe CVS
PatchSet 6951 
Date: 2005/10/20 14:59:56
Author: kaz
Branch: HEAD
Tag: (none) 
Log:
2005-10-20  Ito Kazumitsu  [EMAIL PROTECTED]

* 
libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,

libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java,

libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java:
Proposed patch for GCC Bugzilla Bug 23008 and 22968.

Members: 
ChangeLog:1.4475-1.4476 

libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.1-1.2
 

libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.1-1.2
 

libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java:1.1-1.2
 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4475 kaffe/ChangeLog:1.4476
--- kaffe/ChangeLog:1.4475  Wed Oct 19 20:48:10 2005
+++ kaffe/ChangeLog Thu Oct 20 14:59:56 2005
@@ -1,3 +1,10 @@
+2005-10-20  Ito Kazumitsu  [EMAIL PROTECTED]
+
+   * 
libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,
+   
libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java,
+   
libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java:
+   Proposed patch for GCC Bugzilla Bug 23008 and 22968.
+
 2005-10-19  Guilhem Lavaux  [EMAIL PROTECTED]
 
* developers/update-vm-list: New script adapted from update-class-list
Index: 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java
diff -u 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.1
 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.2
--- 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.1
  Wed Oct 19 20:36:31 2005
+++ 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java
  Thu Oct 20 15:00:03 2005
@@ -54,6 +54,8 @@
   static final int BIG_ENDIAN = 0;
   static final int LITTLE_ENDIAN = 1;
   static final int UNKNOWN_ENDIAN = 2;
+  static final int MAYBE_BIG_ENDIAN = 3;
+  static final int MAYBE_LITTLE_ENDIAN = 4;
 
   private static final char BYTE_ORDER_MARK = 0xFEFF;
   private static final char REVERSED_BYTE_ORDER_MARK = 0xFFFE;
@@ -81,26 +83,37 @@
 byte b2 = in.get ();
 
 // handle byte order mark
-if (byteOrder == UNKNOWN_ENDIAN)
+if (byteOrder == UNKNOWN_ENDIAN ||
+byteOrder == MAYBE_BIG_ENDIAN ||
+byteOrder == MAYBE_LITTLE_ENDIAN)
   {
 char c = (char) (((b1  0xFF)  8) | (b2  0xFF));
 if (c == BYTE_ORDER_MARK)
   {
+if (byteOrder == MAYBE_LITTLE_ENDIAN)
+  {
+return CoderResult.malformedForLength (2);
+  }
 byteOrder = BIG_ENDIAN;
 inPos += 2;
 continue;
   }
 else if (c == REVERSED_BYTE_ORDER_MARK)
   {
+if (byteOrder == MAYBE_BIG_ENDIAN)
+  {
+return CoderResult.malformedForLength (2);
+  }
 byteOrder = LITTLE_ENDIAN;
 inPos += 2;
 continue;
   }
 else
   {
-// assume big endian, do not consume bytes,
+// assume big or little endian, do not consume bytes,
 // continue with normal processing
-byteOrder = BIG_ENDIAN;
+byteOrder = (byteOrder == MAYBE_LITTLE_ENDIAN ?
+ LITTLE_ENDIAN : BIG_ENDIAN);
   }
   }
 
Index: 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java
diff -u 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.1
 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.2
--- 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.1
  Wed Oct 19 20:36:31 2005
+++ 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java
  Thu Oct 20 15:00:03 2005
@@ -64,7 +64,7 @@
 
   public CharsetDecoder newDecoder ()
   {
-return new UTF_16Decoder (this, UTF_16Decoder.UNKNOWN_ENDIAN);
+return new UTF_16Decoder (this, UTF_16Decoder.MAYBE_LITTLE_ENDIAN);
   }
 
   public CharsetEncoder newEncoder ()
Index: 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java
diff -u 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java:1.1
 

Re: [kaffe] classpath _merged_

2005-10-20 Thread Ito Kazumitsu
Hi,

From: Guilhem Lavaux [EMAIL PROTECTED]
Date: Wed, 19 Oct 2005 22:55:35 +0200

 The classpath tree has been merged. I know that it builds, runs 
 regression tests  install peacefully here but I haven't yet tested 
 make dist. If there are problems they will be fixed progressively.

In my case, it did not build.

configure: error: cannot run /usr/local/bin/bash ./config.sub
configure: error: /usr/local/bin/bash './configure' failed for 
libraries/javalib/external/classpath

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] minor bug(2)

2005-10-20 Thread Gianluca Moro
hi all,

compiling kaffe-1.1.6, removing I18N support

(commented the following
// #define KAFFE_I18N   1 /* make Kaffe to be able to support i18n */
in file kaffe-1.1.6/libraries/clib/awt/X/toolkit.h

I found the following errors:

file kaffe-1.1.6/libraries/clib/awt/X/fnt.c
line 299:

KAFFE_FONT_FUNC_DECL( jint, Java_java_awt_Toolkit_fntGetMaxAdvance )
{
  return UNVEIl_FS(fs)-max_bounds.width;
}

should be UNVEIL

and line 335:
  
const int n = 256;

n is assigned a value in line 253

thanks
giammy


--
Gianluca Moro  http://groups.yahoo.com/group/embeddeditalia/
ISCRIVITI alla Mailing List Italiana su LINUX EMBEDDED
[EMAIL PROTECTED]   Visit http://ilpinguino.altervista.org/






___ 
Yahoo! Mail: gratis 1GB per i messaggi e allegati da 10MB 
http://mail.yahoo.it

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] CVS kaffe (guilhem): Removed spurious files in classpath tree.

2005-10-20 Thread Kaffe CVS
PatchSet 6952 
Date: 2005/10/20 16:50:24
Author: guilhem
Branch: HEAD
Tag: (none) 
Log:
Removed spurious files in classpath tree.
Added some missing files coming from automake  libtool.

Members: 
libraries/javalib/external/classpath/config.guess:INITIAL-1.1 
libraries/javalib/external/classpath/config.sub:INITIAL-1.1 
libraries/javalib/external/classpath/ltmain.sh:INITIAL-1.1 

libraries/javalib/external/classpath/autom4te.cache/output.0:1.1-1.2(DEAD) 

libraries/javalib/external/classpath/autom4te.cache/output.1:1.1-1.2(DEAD) 

libraries/javalib/external/classpath/autom4te.cache/requests:1.1-1.2(DEAD) 

libraries/javalib/external/classpath/autom4te.cache/traces.0:1.1-1.2(DEAD) 

libraries/javalib/external/classpath/autom4te.cache/traces.1:1.1-1.2(DEAD) 

===
Checking out kaffe/libraries/javalib/external/classpath/config.guess
RCS:  /home/cvs/kaffe/kaffe/libraries/javalib/external/classpath/config.guess,v
VERS: 1.1
***
--- /dev/null   Sun Aug  4 19:57:58 2002
+++ kaffe/libraries/javalib/external/classpath/config.guess Thu Oct 20 
17:05:12 2005
@@ -0,0 +1,1463 @@
+#! /bin/sh
+# Attempt to guess a canonical system name.
+#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+
+timestamp='2005-07-08'
+
+# This file is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
+# 02110-1301, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+
+# Originally written by Per Bothner [EMAIL PROTECTED].
+# Please send patches to [EMAIL PROTECTED].  Submit a context
+# diff and a properly formatted ChangeLog entry.
+#
+# This script attempts to guess a canonical system name similar to
+# config.sub.  If it succeeds, it prints the system name on stdout, and
+# exits with 0.  Otherwise, it exits with 1.
+#
+# The plan is that this can be called by configure scripts if you
+# don't specify an explicit build system type.
+
+me=`echo $0 | sed -e 's,.*/,,'`
+
+usage=\
+Usage: $0 [OPTION]
+
+Output the configuration name of the system \`$me' is run on.
+
+Operation modes:
+  -h, --help print this help, then exit
+  -t, --time-stamp   print date of last modification, then exit
+  -v, --version  print version number, then exit
+
+Report bugs and patches to [EMAIL PROTECTED].
+
+version=\
+GNU config.guess ($timestamp)
+
+Originally written by Per Bothner.
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 
2002, 2003, 2004, 2005
+Free Software Foundation, Inc.
+
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+help=
+Try \`$me --help' for more information.
+
+# Parse command line
+while test $# -gt 0 ; do
+  case $1 in
+--time-stamp | --time* | -t )
+   echo $timestamp ; exit ;;
+--version | -v )
+   echo $version ; exit ;;
+--help | --h* | -h )
+   echo $usage; exit ;;
+-- ) # Stop option processing
+   shift; break ;;
+- )# Use stdin as input.
+   break ;;
+-* )
+   echo $me: invalid option $1$help 2
+   exit 1 ;;
+* )
+   break ;;
+  esac
+done
+
+if test $# != 0; then
+  echo $me: too many arguments$help 2
+  exit 1
+fi
+
+trap 'exit 1' 1 2 15
+
+# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
+# compiler to aid in system detection is discouraged as it requires
+# temporary files to be created and, as you can see below, it is a
+# headache to deal with in a portable fashion.
+
+# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
+# use `HOST_CC' if defined, but it is deprecated.
+
+# Portable tmp directory creation inspired by the Autoconf team.
+
+set_cc_for_build='
+trap exitcode=\$?; (rm -f \$tmpfiles 2/dev/null; rmdir \$tmp 2/dev/null)  
exit \$exitcode 0 ;
+trap rm -f \$tmpfiles 2/dev/null; rmdir \$tmp 2/dev/null; exit 1 1 2 13 15 
;
+: ${TMPDIR=/tmp} ;
+ { tmp=`(umask 077  mktemp -d -q 

Re: [kaffe] classpath _merged_

2005-10-20 Thread Guilhem Lavaux

Ito Kazumitsu wrote:

Hi,

From: Guilhem Lavaux [EMAIL PROTECTED]
Date: Wed, 19 Oct 2005 22:55:35 +0200


The classpath tree has been merged. I know that it builds, runs 
regression tests  install peacefully here but I haven't yet tested 
make dist. If there are problems they will be fixed progressively.



In my case, it did not build.

configure: error: cannot run /usr/local/bin/bash ./config.sub
configure: error: /usr/local/bin/bash './configure' failed for 
libraries/javalib/external/classpath



Hi,

Thanks Ito. Fixed in CVS now.

BTW, I am going also to merge back some files to classpath's CVS and 
then we'll be able to copy a new snapshot from classpath's CVS.


Cheers,

Guilhem.

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] CVS kaffe (guilhem): Fixlets for test/jni/Makefile to use the new classpath tree.

2005-10-20 Thread Kaffe CVS
PatchSet 6953 
Date: 2005/10/20 16:55:05
Author: guilhem
Branch: HEAD
Tag: (none) 
Log:
Fixlets for test/jni/Makefile to use the new classpath tree.

2005-10-20  Guilhem Lavaux  [EMAIL PROTECTED]

* test/jni/Makefile.am: Fixed rt.jar path (glibj.zip now).

* test/jni/Makefile.in: Regenerated.

Members: 
ChangeLog:1.4476-1.4477 
test/jni/Makefile.am:1.12-1.13 
test/jni/Makefile.in:1.48-1.49 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4476 kaffe/ChangeLog:1.4477
--- kaffe/ChangeLog:1.4476  Thu Oct 20 14:59:56 2005
+++ kaffe/ChangeLog Thu Oct 20 16:55:05 2005
@@ -1,3 +1,9 @@
+2005-10-20  Guilhem Lavaux  [EMAIL PROTECTED]
+
+   * test/jni/Makefile.am: Fixed rt.jar path (glibj.zip now).
+
+   * test/jni/Makefile.in: Regenerated.
+
 2005-10-20  Ito Kazumitsu  [EMAIL PROTECTED]
 
* 
libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,
Index: kaffe/test/jni/Makefile.am
diff -u kaffe/test/jni/Makefile.am:1.12 kaffe/test/jni/Makefile.am:1.13
--- kaffe/test/jni/Makefile.am:1.12 Sun Aug 21 18:01:02 2005
+++ kaffe/test/jni/Makefile.am  Thu Oct 20 16:55:13 2005
@@ -98,7 +98,7 @@
 JAVA_CLASSES = \
JNIWeakTest.class
 
-CPATH = .:$(top_builddir)/libraries/javalib/rt.jar
+CPATH = .:$(top_builddir)/libraries/javalib/external/classpath/lib/glibj.zip
 
 JNIWeakTest.class:  $(srcdir)/JNIWeakTest.java
$(JIKES) -g -classpath $(CPATH) -d . $(srcdir)/JNIWeakTest.java
Index: kaffe/test/jni/Makefile.in
diff -u kaffe/test/jni/Makefile.in:1.48 kaffe/test/jni/Makefile.in:1.49
--- kaffe/test/jni/Makefile.in:1.48 Mon Oct  3 19:36:59 2005
+++ kaffe/test/jni/Makefile.in  Thu Oct 20 16:55:13 2005
@@ -472,7 +472,7 @@
 JAVA_CLASSES = \
JNIWeakTest.class
 
-CPATH = .:$(top_builddir)/libraries/javalib/rt.jar
+CPATH = .:$(top_builddir)/libraries/javalib/external/classpath/lib/glibj.zip
 jniWeakTest_SOURCES = jniWeakTest.c
 jniWeakTest_LDADD = \
-dlopen $(top_builddir)/test/jni/libjniweaklib.la \

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] CVS kaffe (kaz): libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,

2005-10-20 Thread Guilhem Lavaux

Hi Ito,

Could you push your patch yourself on classpath-patches ml ? :) I could 
do it but it is maybe better if you do it.


Thanks for bringing it back btw !

Guilhem.

Kaffe CVS wrote:
PatchSet 6951 
Date: 2005/10/20 14:59:56

Author: kaz
Branch: HEAD
Tag: (none) 
Log:

2005-10-20  Ito Kazumitsu  [EMAIL PROTECTED]

* 
libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,

libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java,

libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java:
Proposed patch for GCC Bugzilla Bug 23008 and 22968.

Members: 
	ChangeLog:1.4475-1.4476 
	libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.1-1.2 
	libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.1-1.2 
	libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java:1.1-1.2 


Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.4475 kaffe/ChangeLog:1.4476
--- kaffe/ChangeLog:1.4475  Wed Oct 19 20:48:10 2005
+++ kaffe/ChangeLog Thu Oct 20 14:59:56 2005
@@ -1,3 +1,10 @@
+2005-10-20  Ito Kazumitsu  [EMAIL PROTECTED]
+
+   * 
libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,
+   
libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java,
+   
libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java:
+   Proposed patch for GCC Bugzilla Bug 23008 and 22968.
+
 2005-10-19  Guilhem Lavaux  [EMAIL PROTECTED]
 
 	* developers/update-vm-list: New script adapted from update-class-list

Index: 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java
diff -u 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.1
 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.2
--- 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java:1.1
  Wed Oct 19 20:36:31 2005
+++ 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java
  Thu Oct 20 15:00:03 2005
@@ -54,6 +54,8 @@
   static final int BIG_ENDIAN = 0;
   static final int LITTLE_ENDIAN = 1;
   static final int UNKNOWN_ENDIAN = 2;
+  static final int MAYBE_BIG_ENDIAN = 3;
+  static final int MAYBE_LITTLE_ENDIAN = 4;
 
   private static final char BYTE_ORDER_MARK = 0xFEFF;

   private static final char REVERSED_BYTE_ORDER_MARK = 0xFFFE;
@@ -81,26 +83,37 @@
 byte b2 = in.get ();
 
 // handle byte order mark

-if (byteOrder == UNKNOWN_ENDIAN)
+if (byteOrder == UNKNOWN_ENDIAN ||
+byteOrder == MAYBE_BIG_ENDIAN ||
+byteOrder == MAYBE_LITTLE_ENDIAN)
   {
 char c = (char) (((b1  0xFF)  8) | (b2  0xFF));
 if (c == BYTE_ORDER_MARK)
   {
+if (byteOrder == MAYBE_LITTLE_ENDIAN)
+  {
+return CoderResult.malformedForLength (2);
+  }
 byteOrder = BIG_ENDIAN;
 inPos += 2;
 continue;
   }
 else if (c == REVERSED_BYTE_ORDER_MARK)
   {
+if (byteOrder == MAYBE_BIG_ENDIAN)
+  {
+return CoderResult.malformedForLength (2);
+  }
 byteOrder = LITTLE_ENDIAN;
 inPos += 2;
 continue;
   }
 else
   {
-// assume big endian, do not consume bytes,
+// assume big or little endian, do not consume bytes,
 // continue with normal processing
-byteOrder = BIG_ENDIAN;
+byteOrder = (byteOrder == MAYBE_LITTLE_ENDIAN ?
+ LITTLE_ENDIAN : BIG_ENDIAN);
   }
   }
 
Index: kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java

diff -u 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.1
 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.2
--- 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java:1.1
  Wed Oct 19 20:36:31 2005
+++ 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/UnicodeLittle.java
  Thu Oct 20 15:00:03 2005
@@ -64,7 +64,7 @@
 
   public CharsetDecoder newDecoder ()

   {
-return new UTF_16Decoder (this, UTF_16Decoder.UNKNOWN_ENDIAN);
+return new UTF_16Decoder (this, UTF_16Decoder.MAYBE_LITTLE_ENDIAN);
   }
 
   public CharsetEncoder newEncoder ()

Index: 
kaffe/libraries/javalib/external/classpath/gnu/java/nio/charset/iconv/IconvProvider.java
diff -u 

Re: [kaffe] CVS kaffe (kaz): libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,

2005-10-20 Thread Ito Kazumitsu
Hi,

From: Guilhem Lavaux [EMAIL PROTECTED]
Date: Thu, 20 Oct 2005 20:59:38 +0200

 Could you push your patch yourself on classpath-patches ml ? :) I could 
 do it but it is maybe better if you do it.

I reported the bugs and submitted the patches to Savannah last June,
and the bugs are still open.

Which is the right place to submit patchs?  classpath-patches?
commit-classpath? Or the bug reporting web site?

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


[kaffe] free source code of java for research work

2005-10-20 Thread ramana murty bhamidipati

 Dear Sir/Madam,

Iam a Research Scholar in Computer Science from India.I have come across your site , when Iam looking for source code related projects in java .

If possible can I get the source code of java projects for my reseach analysis.
 kindly give information to get free source code for java projects.


Thanking you,

Ramana Murty.B.V.
Student Ph.D.



___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] free source code of java for research work

2005-10-20 Thread Dalibor Topic

ramana murty bhamidipati wrote:

  Dear Sir/Madam,

Iam a Research Scholar in Computer Science from India.I have come across 
your site , when Iam looking for source code related projects in java .


If possible can I get the source code of java projects for my reseach 
analysis.


You can get the source code for the latest Kaffe release at 
ftp://ftp.kaffe.org/pub/kaffe/v1.1.x-development/kaffe-1.1.6.tar.gz .


You can get links to many (largely open source) Java projects at 
http://freshmeat.net/browse/198/ .


cheers,
dalibor topic

___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [kaffe] CVS kaffe (kaz): libraries/javalib/external/classpath/gnu/java/nio/charset/UTF_16Decoder.java,

2005-10-20 Thread Guilhem Lavaux

Ito Kazumitsu wrote:

Hi,

From: Guilhem Lavaux [EMAIL PROTECTED]
Date: Thu, 20 Oct 2005 20:59:38 +0200


Could you push your patch yourself on classpath-patches ml ? :) I could 
do it but it is maybe better if you do it.



I reported the bugs and submitted the patches to Savannah last June,
and the bugs are still open.

Which is the right place to submit patchs?  classpath-patches?
commit-classpath? Or the bug reporting web site?


I think that when you are not a developper it's better to submit them to 
the web site. In your case I don't remember whether you have the access 
rights to the CVS. If it's so then you can send your patches to 
classpath-patches and after a review check it in into the CVS. If not 
I'll do it.


Cheers,

Guilhem.



___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe




___
kaffe mailing list
kaffe@kaffe.org
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe