From: Tom Tromey Date: Wed, 4 Aug 1999 20:53:52 +0000 (+0000) Subject: * configure.in: Added missing `;;'. From Anthony Green. X-Git-Tag: releases/libgcj-2.95.1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3c5f5f4a9a724aa33a75455036d5d3eb984d388;p=thirdparty%2Fgcc.git * configure.in: Added missing `;;'. From Anthony Green. From-SVN: r28515 --- diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index b9332105384b..6b995afaaa6a 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +1999-08-04 Tom Tromey + + * configure.in: Added missing `;;'. From Anthony Green. + Mon Aug 2 23:09:41 1999 Rainer Orth * configure.in (machdep): Use mips_ultrix_mach_dep.s on Ultrix V4. diff --git a/boehm-gc/configure b/boehm-gc/configure index 739898c4574c..44293c433c2a 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -2394,7 +2394,6 @@ case "$host" in alpha*-*-*) machdep="alpha_mach_dep.lo" ;; - ;; mipstx39-*-elf*) machdep="mips_ultrix_mach_dep.lo" cat >> confdefs.h <<\EOF @@ -2415,6 +2414,7 @@ EOF #define NO_EXECUTE_PERMISSION 1 EOF + ;; sparc-sun-solaris2.3*) cat >> confdefs.h <<\EOF #define SUNOS53_SHARED_LIB 1 diff --git a/boehm-gc/configure.in b/boehm-gc/configure.in index c39f3e27c7af..e2777cca6714 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -137,7 +137,6 @@ case "$host" in alpha*-*-*) machdep="alpha_mach_dep.lo" ;; - ;; mipstx39-*-elf*) machdep="mips_ultrix_mach_dep.lo" AC_DEFINE(STACKBASE, __stackbase) @@ -149,6 +148,7 @@ case "$host" in mips-*-*) machdep="mips_sgi_mach_dep.lo" AC_DEFINE(NO_EXECUTE_PERMISSION) + ;; sparc-sun-solaris2.3*) AC_DEFINE(SUNOS53_SHARED_LIB) ;;