This is the mail archive of the libffi-discuss@sources.redhat.com mailing list for the libffi project.


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

3.0.1 PATCH: Handle sparcv9-sun-* in libffi


A bootstrap of GCC 3.0 for the sparcv9-sun-solaris2.8 target with
--enable-libgcj initially failed in libffi:

configure: error: libffi has not been ported to sparcv9-sun-solaris2.8.

It turns out that the trivial patch below fixes this.

Ok for branch and mainline?

	Rainer

-----------------------------------------------------------------------------
Rainer Orth, Faculty of Technology, Bielefeld University

Email: ro@TechFak.Uni-Bielefeld.DE


Mon Jun 25 19:36:41 2001  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>

	* configure.in: Recognize sparc*-sun-* host.
	* configure: Regenerate.
	
===================================================================
RCS file: libffi/RCS/configure.in,v
retrieving revision 1.1
diff -up -r1.1 libffi/configure.in
--- libffi/configure.in	2001/05/06 12:54:48	1.1
+++ libffi/configure.in	2001/06/22 16:02:56
@@ -48,7 +48,7 @@ i*86-*-win32*) TARGET=X86_WIN32; TARGETD
 i*86-*-cygwin*) TARGET=X86_WIN32; TARGETDIR=x86;;
 i*86-*-mingw*) TARGET=X86_WIN32; TARGETDIR=x86;;
 sparc-sun-4*) TARGET=SPARC; TARGETDIR=sparc;;
-sparc-sun-*) TARGET=SPARC; TARGETDIR=sparc;;
+sparc*-sun-*) TARGET=SPARC; TARGETDIR=sparc;;
 sparc-*-linux*) TARGET=SPARC; TARGETDIR=sparc;;
 sparc64-*-linux*) TARGET=SPARC; TARGETDIR=sparc;;
 alpha*-*-linux* | alpha*-*-osf*) TARGET=ALPHA; TARGETDIR=alpha;;


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