From: ivmai Date: Mon, 30 May 2011 13:37:49 +0000 (+0000) Subject: 2011-05-30 Ivan Maidanski X-Git-Tag: gc7_2alpha6~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f23871d82596c02376db7d1ee03cf33cab6d4de9;p=gc 2011-05-30 Ivan Maidanski * configure.ac (SOLARIS25_PROC_VDB_BUG_FIXED): Don't define for Solaris/x86 2.10+. * configure: Regenerate. --- diff --git a/ChangeLog b/ChangeLog index 6ff981ad..eaa86932 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-05-30 Ivan Maidanski + + * configure.ac (SOLARIS25_PROC_VDB_BUG_FIXED): Don't define for + Solaris/x86 2.10+. + * configure: Regenerate. + 2011-05-23 Ivan Maidanski * tests/threadkey_test.c (SKIP_THREADKEY_TEST): Skip the test if diff --git a/configure b/configure index 3681b580..572544aa 100755 --- a/configure +++ b/configure @@ -5556,7 +5556,8 @@ $as_echo "$as_me: WARNING: OpenBSD/Alpha without dlopen(). Shared library suppor alpha*-*-linux*) machdep="mach_dep.lo" ;; - i?86-*-solaris2.[89] | i?86-*-solaris2.1?) + i?86-*-solaris2.[89]) + # PROC_VDB appears to work in 2.8 and 2.9 but not in 2.10+ (for now). $as_echo "#define SOLARIS25_PROC_VDB_BUG_FIXED 1" >>confdefs.h diff --git a/configure.ac b/configure.ac index 0d9083ea..34fb6594 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ AC_CONFIG_SRCDIR(gcj_mlc.c) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_TARGET AC_PREREQ(2.64) -AC_REVISION($Revision: 1.65 $) +AC_REVISION($Revision: 1.66 $) GC_SET_VERSION AM_INIT_AUTOMAKE([foreign dist-bzip2 nostdinc]) AM_CONFIG_HEADER([include/private/config.h]) @@ -395,7 +395,8 @@ case "$host" in alpha*-*-linux*) machdep="mach_dep.lo" ;; - i?86-*-solaris2.[[89]] | i?86-*-solaris2.1?) + i?86-*-solaris2.[[89]]) + # PROC_VDB appears to work in 2.8 and 2.9 but not in 2.10+ (for now). AC_DEFINE([SOLARIS25_PROC_VDB_BUG_FIXED], 1, [See the comment in gcconfig.h.]) ;;