From efddfd8a72028ed54ae579dfc5c05133375c8ff4 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 23 Sep 2011 12:13:03 +0400 Subject: [PATCH] Regenerate configure; update ChangeLog --- ChangeLog | 15 +++++++++++++++ configure | 6 ++++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6a925c10..7150b029 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2011-09-23 Ivan Maidanski + + * configure: Regenerate. + +2011-09-23 Ivan Maidanski + + * configure.ac (NO_DEBUGGING): Define based on testing enable_gc_debug + value (instead of based on with_cross_host value). + +2011-09-23 Ivan Maidanski + + * configure.ac (THREAD_LOCAL_ALLOC): Test enable_shared and + enable_static values properly when setting THREAD_LOCAL_ALLOC + in case PARALLEL_MARK is off (Win32 only). + 2011-09-22 Ivan Maidanski * configure: Regenerate. diff --git a/configure b/configure index 5cb6976f..94f28f54 100755 --- a/configure +++ b/configure @@ -5097,7 +5097,7 @@ $as_echo "$as_me: WARNING: \"Explicit GC_INIT() calls may be required.\"" >&2;}; $as_echo "#define THREAD_LOCAL_ALLOC 1" >>confdefs.h else - if test "${enable_static}" == yes; then + if test "${enable_shared}" != yes || test "${enable_static}" != no; then # Imply THREAD_LOCAL_ALLOC unless GC_DLL. $as_echo "#define THREAD_LOCAL_ALLOC 1" >>confdefs.h @@ -16378,6 +16378,9 @@ $as_echo "#define NO_CLOCK 1" >>confdefs.h $as_echo "#define SMALL_CONFIG 1" >>confdefs.h +fi + +if test "$enable_gc_debug" == "no"; then $as_echo "#define NO_DEBUGGING 1" >>confdefs.h @@ -16385,7 +16388,6 @@ fi - # Check whether --enable-gc-assertions was given. if test "${enable_gc_assertions+set}" = set; then : enableval=$enable_gc_assertions; -- 2.40.0