diff options
| author | Heather McIntyre <[email protected]> | 2023-10-10 15:43:00 +0200 |
|---|---|---|
| committer | Aaron Merey <[email protected]> | 2024-06-04 15:08:56 -0400 |
| commit | 1765801bc38b7a3e27089a5607f42e627e61f236 (patch) | |
| tree | cdfc14d98ca86c7e85c852329dfe507b2df8a1e4 | |
| parent | f5f262dbb5ee107483ffc1a0afff9366e0211ef3 (diff) | |
configure: No longer mark --enable-thread-safety as EXPERIMENTAL
* configure.ac (--enable-thread-safety): Remove experimental
warning.
Signed-off-by: Heather S. McIntyre <[email protected]>
Signed-off-by: Mark Wielaard <[email protected]>
| -rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index ddea5952..0a092b7a 100644 --- a/configure.ac +++ b/configure.ac @@ -79,12 +79,10 @@ AC_DEFINE_UNQUOTED(DEFAULT_AR_DETERMINISTIC, $default_ar_deterministic, AC_ARG_ENABLE([thread-safety], AS_HELP_STRING([--enable-thread-safety], - [enable thread safety of libraries EXPERIMENTAL]), + [enable thread safety of libraries]), use_locks=$enableval, use_locks=no) AM_CONDITIONAL(USE_LOCKS, test "$use_locks" = yes) AS_IF([test "$use_locks" = yes], [AC_DEFINE(USE_LOCKS)]) -AS_IF([test "$use_locks" = yes], - [AC_MSG_WARN([thread-safety is EXPERIMENTAL tests might fail.])]) AH_TEMPLATE([USE_LOCKS], [Defined if libraries should be thread-safe.]) @@ -937,10 +935,10 @@ AC_MSG_NOTICE([ Symbol versioning : ${enable_symbol_versioning} NOT RECOMMENDED FEATURES (should all be no) - Experimental thread safety : ${use_locks} install elf.h : ${install_elfh} OTHER FEATURES + Enable thread safety : ${use_locks} Deterministic archives by default : ${default_ar_deterministic} Native language support : ${USE_NLS} Extra Valgrind annotations : ${use_vg_annotations} |
