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]

Patch: PROCESS override for configure.host


I'm committing the appended patch.  It changes libjava's configure so
that the PROCESS setting can be overridden by configure.host.

1999-09-28  Tom Tromey  <tromey@cygnus.com>

	* configure: Rebuilt.
	* configure.in (PROCESS): In POSIX case, only set if not already
	set.
	* configure.host (PROCESS): Set in mips-tx39 case.

Tom

Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.33
diff -u -r1.33 configure.in
--- configure.in	1999/09/24 19:12:22	1.33
+++ configure.in	1999/09/28 22:12:15
@@ -63,7 +63,7 @@
 case "$TARGET_ECOS" in
    no)
       FILE_DESCRIPTOR=natFileDescriptorPosix.cc
-      PROCESS=Posix
+      PROCESS=${PROCESS-Posix}
       ;;
    *)
       FILE_DESCRIPTOR=natFileDescriptorEcos.cc
Index: configure.host
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.host,v
retrieving revision 1.2
diff -u -r1.2 configure.host
--- configure.host	1999/07/21 15:11:55	1.2
+++ configure.host	1999/09/28 22:12:15
@@ -50,6 +50,8 @@
 	libgcj_flags="${libgcj_flags} -G 0"
 	LDFLAGS="$LDFLAGS -Tjmr3904dram.ld"
 	AM_RUNTESTFLAGS="--target_board=jmr3904-sim"	
+	# Use "Ecos" processes since they are a no-op.
+	PROCESS=Ecos
 	;;
   i686-*|i586-*)
 	libgcj_flags="${libgcj_flags} -ffloat-store"

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