diff options
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 7 | ||||
-rwxr-xr-x | boehm-gc/configure | 4 | ||||
-rw-r--r-- | boehm-gc/configure.in | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 2d6d229..ec1d28fa 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,10 @@ +2003-09-29 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * configure.in: Remove wildcard from Solaris 8-9/Intel and Solaris + 2.3/SPARC, there are no micro versions. + Treat Solaris 10 and up alike. + * configure: Regenerate. + 2003-09-22 Anthony Green <green@redhat.com> * os_dep.c: Fix GC_get_stack_base build problem for vanilla elf diff --git a/boehm-gc/configure b/boehm-gc/configure index 0ef1af8..f75df12 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -3089,7 +3089,7 @@ case "$host" in alpha*-*-linux*) machdep="alpha_mach_dep.lo" ;; - i?86-*-solaris2.[89]*) + i?86-*-solaris2.[89] | i?86-*-solaris2.1?) cat >> confdefs.h <<\EOF #define SOLARIS25_PROC_VDB_BUG_FIXED 1 EOF @@ -3123,7 +3123,7 @@ EOF sparc-*-netbsd*) machdep="sparc_netbsd_mach_dep.lo" ;; - sparc-sun-solaris2.3*) + sparc-sun-solaris2.3) machdep="sparc_mach_dep.lo" cat >> confdefs.h <<\EOF #define SUNOS53_SHARED_LIB 1 diff --git a/boehm-gc/configure.in b/boehm-gc/configure.in index 637c8ad..96da3c31ed 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -257,7 +257,7 @@ case "$host" in alpha*-*-linux*) machdep="alpha_mach_dep.lo" ;; - i?86-*-solaris2.[[89]]*) + i?86-*-solaris2.[[89]] | i?86-*-solaris2.1?) AC_DEFINE(SOLARIS25_PROC_VDB_BUG_FIXED) ;; mipstx39-*-elf*) @@ -279,7 +279,7 @@ case "$host" in sparc-*-netbsd*) machdep="sparc_netbsd_mach_dep.lo" ;; - sparc-sun-solaris2.3*) + sparc-sun-solaris2.3) machdep="sparc_mach_dep.lo" AC_DEFINE(SUNOS53_SHARED_LIB) ;; |