[Ultrix V4.3] libgcj 2.95 boehm-gc uses wrong machdep file

Rainer Orth ro@TechFak.Uni-Bielefeld.DE
Wed Aug 4 11:57:00 GMT 1999


Trying to build libgcj 2.95 on Ultrix V4.3, I noticed that boehm-gc uses
the wrong (mips_sgi_mach_dep.s) machdep file.  The following patch fixes
this.

	Rainer

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

Email: ro@TechFak.Uni-Bielefeld.DE


Mon Aug  2 23:09:41 1999  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>

	* configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4.

Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/boehm-gc/configure.in,v
retrieving revision 1.9
diff -u -p -r1.9 configure.in
--- configure.in	1999/06/30 12:43:24	1.9
+++ configure.in	1999/08/04 18:51:50
@@ -137,15 +137,18 @@ case "$host" in
  alpha*-*-*)
     machdep="alpha_mach_dep.lo"
     ;;
- mips-*-*)
-    machdep="mips_sgi_mach_dep.lo"
-    AC_DEFINE(NO_EXECUTE_PERMISSION)
     ;;
  mipstx39-*-elf*)
     machdep="mips_ultrix_mach_dep.lo"
     AC_DEFINE(STACKBASE, __stackbase)
     AC_DEFINE(DATASTART_IS_ETEXT)
     ;;
+ mips-dec-ultrix*)
+    machdep="mips_ultrix_mach-dep.lo"
+    ;;
+ mips-*-*)
+    machdep="mips_sgi_mach_dep.lo"
+    AC_DEFINE(NO_EXECUTE_PERMISSION)
  sparc-sun-solaris2.3*)
     AC_DEFINE(SUNOS53_SHARED_LIB)
     ;;


More information about the Java-patches mailing list