X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=configure.ac;h=6ca038c0fa784f037454debd01c1bd482fc0e170;hb=refs%2Fheads%2Fstable-0.9;hp=89df62d9dd7125a8526ed5c8dbc3a50ba47552f3;hpb=5f6503c78ee929cd77d6e51987b5826de5a5fe99;p=userspace-rcu.git diff --git a/configure.ac b/configure.ac index 89df62d..6ca038c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([userspace-rcu],[0.9.5],[mathieu dot desnoyers at efficios dot com], [], [http://liburcu.org/]) +AC_INIT([userspace-rcu],[0.9.7],[mathieu dot desnoyers at efficios dot com], [], [http://liburcu.org/]) # Following the numbering scheme proposed by libtool for the library version # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html @@ -33,14 +33,7 @@ AC_ARG_ENABLE([compiler-tls], [def_compiler_tls=$enableval], [def_compiler_tls="yes"]) -# If not overridden, use ax_tls.m4 to check if TLS is available. -AS_IF([test "x$def_compiler_tls" = "xyes"], - [AX_TLS([def_tls_detect=$ac_cv_tls], [:])], - [:]) - -AS_IF([test "x$def_tls_detect" = "x"], - [:], - [AC_DEFINE_UNQUOTED([CONFIG_RCU_TLS], $def_tls_detect)]) +AS_IF([test "x$def_compiler_tls" = "xyes"], AC_DEFINE([CONFIG_RCU_TLS], [1]), [:]) # Checks for C compiler AC_USE_SYSTEM_EXTENSIONS @@ -401,8 +394,8 @@ AS_IF([test "x$def_smp_support" = "xyes"],[ AS_ECHO("SMP support disabled.") ]) -AS_IF([test "x$def_tls_detect" = "x"],[ - AS_ECHO("Thread Local Storage (TLS): pthread_getspecific().") +AS_IF([test "x$def_compiler_tls" = "xyes"],[ + AS_ECHO("Thread Local Storage (TLS): compiler TLS.") ],[ - AS_ECHO("Thread Local Storage (TLS): $def_tls_detect.") + AS_ECHO("Thread Local Storage (TLS): pthread_getspecific().") ])