aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog6
-rwxr-xr-xgcc/configure4
-rw-r--r--gcc/configure.ac4
3 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 272dc42..3181937 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,11 @@
2011-01-31 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+ * configure.ac (gcc_cv_ld_eh_frame_hdr): Update minimal Sun ld
+ version number.
+ * configure: Regenerate.
+
+2011-01-31 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
* configure.ac (gcc_cv_ld_static_option): Define.
(gcc_cv_ld_dynamic_option): Define.
(gcc_cv_ld_static_dynamic): Tru64 UNIX support -noso/-so_archive
diff --git a/gcc/configure b/gcc/configure
index 85af3e5..f38bb65 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -25332,8 +25332,8 @@ elif test x$gcc_cv_ld != x; then
else
case "$target" in
*-*-solaris2*)
- # Sun ld has various bugs in .eh_frame_hdr support before version 1.2249.
- if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2249; then
+ # Sun ld has various bugs in .eh_frame_hdr support before version 1.2251.
+ if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2251; then
gcc_cv_ld_eh_frame_hdr=yes
fi
;;
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 6a90014..366a5ae 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -3982,8 +3982,8 @@ elif test x$gcc_cv_ld != x; then
else
case "$target" in
*-*-solaris2*)
- # Sun ld has various bugs in .eh_frame_hdr support before version 1.2249.
- if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2249; then
+ # Sun ld has various bugs in .eh_frame_hdr support before version 1.2251.
+ if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2251; then
gcc_cv_ld_eh_frame_hdr=yes
fi
;;