diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index fe484157b31a5cc836aa9fa836ccb0d20b146364..92ba20ccf2e14a8796e58acd9e4b27f9015ab879 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +1999-08-04 Tom Tromey <tromey@cygnus.com> + + * configure.in: Added missing `;;'. From Anthony Green. + 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. diff --git a/boehm-gc/configure b/boehm-gc/configure index 739898c4574cb74b3a73f88e831bd8231cf8e29f..91dfc8b418a21f2a782caa573d00985ad5b11bae 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -2415,6 +2415,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 c39f3e27c7af14c6f6dca8c3d40072a87dd4d773..45466473534da5ff75c68925acd27f0e173243cd 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -149,6 +149,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) ;;