aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc
diff options
context:
space:
mode:
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>2003-09-29 20:02:08 +0000
committerRainer Orth <ro@gcc.gnu.org>2003-09-29 20:02:08 +0000
commit51ac684e521e8008e2c076e5ca7c139b236f603c (patch)
tree6edffa9e06a368214fea4c6a8788e965c7a343f8 /boehm-gc
parent6821a40b747dc32328e3ceab54ff47eee39694d8 (diff)
downloadgcc-51ac684e521e8008e2c076e5ca7c139b236f603c.zip
gcc-51ac684e521e8008e2c076e5ca7c139b236f603c.tar.gz
gcc-51ac684e521e8008e2c076e5ca7c139b236f603c.tar.bz2
configure.in: Remove wildcard from Solaris 8-9/Intel and Solaris 2.3/SPARC...
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. From-SVN: r71914
Diffstat (limited to 'boehm-gc')
-rw-r--r--boehm-gc/ChangeLog7
-rwxr-xr-xboehm-gc/configure4
-rw-r--r--boehm-gc/configure.in4
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)
;;