diff options
-rw-r--r-- | boehm-gc/ChangeLog | 6 | ||||
-rwxr-xr-x | boehm-gc/configure | 3 | ||||
-rw-r--r-- | boehm-gc/configure.in | 3 |
3 files changed, 12 insertions, 0 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 0b066bc..0fd8d8b 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +1999-04-14 Tom Tromey <tromey@cygnus.com> + + * configure: Rebuilt. + * configure.in: Added support for alpha. + From David Pettersson <dapet@mai.liu.se>. + 1999-04-13 Tom Tromey <tromey@cygnus.com> * Makefile.in: Rebuilt. diff --git a/boehm-gc/configure b/boehm-gc/configure index a5f305a..3f78049 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -1744,6 +1744,9 @@ esac machdep= case "$host" in + alpha-*-*) + machdep="alpha_mach_dep.o" + ;; mipstx39-*-elf*) machdep="mips_ultrix_mach_dep.o" cat >> confdefs.h <<\EOF diff --git a/boehm-gc/configure.in b/boehm-gc/configure.in index 6a4850f1..1c6e4ef 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -127,6 +127,9 @@ AC_SUBST(CXXINCLUDES) machdep= case "$host" in + alpha-*-*) + machdep="alpha_mach_dep.o" + ;; mipstx39-*-elf*) machdep="mips_ultrix_mach_dep.o" AC_DEFINE(STACKBASE, __stackbase) |