This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

enable java for i*86-*-netbsdelf*


These patches enables java for NetBSD/i386 ELF.

Bootstrapped and checked on i386-unknown-netbsdelf1.5ZC (there are 30
unexpected failures in libjava.lang/lang.exp. I will analyze the failures
soon.)

   /Krister



2002-03-30  Krister Walfridsson  <cato@df.lth.se>

	* configure.in: Enable i*86-*-netbsdelf*.
	* configure: Rebuilt.

2002-03-30  Krister Walfridsson  <cato@df.lth.se>

	* configure.in (i*86-*-netbsdelf*): Don't disable java.



Index: gcc/libffi/configure.in
===================================================================
RCS file: /cvs/gcc/gcc/libffi/configure.in,v
retrieving revision 1.20
diff -c -3 -p -r1.20 configure.in
*** configure.in	2002/03/21 22:14:56	1.20
--- configure.in	2002/03/30 19:14:36
*************** i*86-*-linux*) TARGET=X86; TARGETDIR=x86
*** 44,49 ****
--- 44,50 ----
  i*86-*-solaris*) TARGET=X86; TARGETDIR=x86;;
  i*86-*-beos*) TARGET=X86; TARGETDIR=x86;;
  i*86-*-freebsd*) TARGET=X86; TARGETDIR=x86;;
+ i*86-*-netbsdelf*) TARGET=X86; TARGETDIR=x86;;
  i*86-*-win32*) TARGET=X86_WIN32; TARGETDIR=x86;;
  i*86-*-cygwin*) TARGET=X86_WIN32; TARGETDIR=x86;;
  i*86-*-mingw*) TARGET=X86_WIN32; TARGETDIR=x86;;
Index: gcc/configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.124
diff -c -3 -p -r1.124 configure.in
*** configure.in	2002/03/27 22:51:44	1.124
--- configure.in	2002/03/30 19:14:39
*************** case "${target}" in
*** 623,628 ****
--- 623,629 ----

      # Skip some stuff that's unsupported on some NetBSD configurations.
      case "${target}" in
+       i*86-*-netbsdelf*) ;;
        *)
  	noconfigdirs="$noconfigdirs ${libgcj}"
  	;;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]