From: tromey Date: Wed, 4 Aug 1999 19:51:34 +0000 (+0000) Subject: Mon Aug 2 23:09:41 1999 Rainer Orth X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=02532e327f134d61cde8b23b87fbc53354659b51;p=gc Mon Aug 2 23:09:41 1999 Rainer Orth * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28503 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/ChangeLog b/ChangeLog index 1ddff1cf..fe484157 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 2 23:09:41 1999 Rainer Orth + + * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4. + 1999-08-03 Tom Tromey * gc_priv.h (GC_test_and_set): Implementation for Linux PPC from diff --git a/configure b/configure index faebc05a..739898c4 100755 --- a/configure +++ b/configure @@ -2394,12 +2394,6 @@ case "$host" in alpha*-*-*) machdep="alpha_mach_dep.lo" ;; - mips-*-*) - machdep="mips_sgi_mach_dep.lo" - cat >> confdefs.h <<\EOF -#define NO_EXECUTE_PERMISSION 1 -EOF - ;; mipstx39-*-elf*) machdep="mips_ultrix_mach_dep.lo" @@ -2412,6 +2406,15 @@ EOF EOF ;; + mips-dec-ultrix*) + machdep="mips_ultrix_mach-dep.lo" + ;; + mips-*-*) + machdep="mips_sgi_mach_dep.lo" + cat >> confdefs.h <<\EOF +#define NO_EXECUTE_PERMISSION 1 +EOF + sparc-sun-solaris2.3*) cat >> confdefs.h <<\EOF #define SUNOS53_SHARED_LIB 1 diff --git a/configure.in b/configure.in index f14a677d..c39f3e27 100644 --- a/configure.in +++ b/configure.in @@ -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) ;;