diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-29 20:02:08 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-29 20:02:08 +0000 |
commit | 3c00589d322cfb7ff80c9661342eb48324d35101 (patch) | |
tree | 6edffa9e06a368214fea4c6a8788e965c7a343f8 /boehm-gc | |
parent | e4eab53c2205b9030fbfa456638330cf4e1b5f2e (diff) | |
download | gcc-3c00589d322cfb7ff80c9661342eb48324d35101.tar.gz |
boehm-gc:
* 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.
gcc:
* config.gcc (sparc-*-solaris2*): Handle Solaris 10 and up like
Solaris 7-9.
* fixinc/inclhack.def (solaris_widec): Replace solaris2.[0-5]* by
wildcards which explicitly match micro versions.
* fixinc/fixincl.x: Regenerate.
libstdc++-v3:
* configure.host: Handle Solaris 2.5 micro releases explicitly.
Remove wildcards from Solaris 2.6, 7-9: there were no
micro releases.
Treat Solaris 10 and up like 7-9.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71914 138bc75d-0d04-0410-961f-82ee72b054a4
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 2d6d229b971..ec1d28fabd8 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 0ef1af8e771..f75df12a3c5 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 637c8ad35fd..96da3c31ed3 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) ;; |