This is the mail archive of the java-patches@sourceware.cygnus.com 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]

Configuration patches related to PR #155



Richard Emberson <emberson@contact.com> has been courageously building
and rebuilding gcj/libgcj for the Solaris/x86 platform in order to
confirm that PR #155 is a thing of the past as far as you run the
latest and greatest compiler, but some patches in the configure system
are required in order to build this target. I'm asking permission to
check these two in on behalf on Bryce and Anthony.

./A

2000-04-04  Alexandre Petit-Bianco  <apbianco@cygnus.com>

	* configure.in: (i[3456]86-*-solaris2*): Removed `target-libffi'
	from list. Patch proposed by Anthony Green.

Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/configure.in,v
retrieving revision 1.3
diff -u -p -r1.3 configure.in
--- configure.in	1999/08/08 18:46:05	1.3
+++ configure.in	2000/04/04 15:22:32
@@ -671,7 +671,7 @@ case "${target}" in
     noconfigdirs="$noconfigdirs gprof target-libgloss target-libffi"
     ;;
   i[3456]86-*-solaris2*)
-    noconfigdirs="$noconfigdirs target-libgloss target-libffi"
+    noconfigdirs="$noconfigdirs target-libgloss"
     ;;
   i[3456]86-*-sysv4*)
     # The SYSV4 C compiler doesn't handle Emacs correctly

2000-04-04  Alexandre Petit-Bianco  <apbianco@cygnus.com>

	* configure: Rebuilt.
	* configure.in: (i*86-pc-solaris*): New libffi target. Patch
	proposed by Bryce McKinlay.

Index: libffi/configure.in
===================================================================
RCS file: /cvs/java/libgcj/libffi/configure.in,v
retrieving revision 1.5
diff -u -p -r1.5 configure.in
--- configure.in	2000/03/03 16:58:42	1.5
+++ configure.in	2000/04/04 15:22:42
@@ -46,6 +46,7 @@ TARGETDIR="unknown"
 case "$host" in
 mips-sgi-irix5.* | mips-sgi-irix6.*) TARGET=MIPS; TARGETDIR=mips;;
 i*86-pc-linux*) TARGET=X86; TARGETDIR=x86;;
+i*86-pc-solaris*) TARGET=X86; TARGETDIR=x86;;
 i*86-*-beos*) TARGET=X86; TARGETDIR=x86;;
 sparc-sun-4*) TARGET=SPARC; TARGETDIR=sparc;;
 sparc-sun-*) TARGET=SPARC; TARGETDIR=sparc;;

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