X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=configure.ac;h=3d772e3a479ed2958172f2be7eb2a6c97cdc0384;hp=e7cc18106a2a4f2ce5f9024118ebda835c975c53;hb=0540b338037a07893d4f0856dbece93a5c8e19c7;hpb=c96a37267efd57cddf7a30f472f9e56f2ecddddc diff --git a/configure.ac b/configure.ac index e7cc181..3d772e3 100644 --- a/configure.ac +++ b/configure.ac @@ -2,18 +2,20 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([userspace-rcu], [0.2.3-alpha], [mathieu dot desnoyers at polymtl dot ca]) +AC_INIT([userspace-rcu], [0.2.3], [mathieu dot desnoyers at polymtl dot ca]) AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip]) AC_CONFIG_SRCDIR([urcu.h]) +AM_PROG_MKDIR_P -AH_TEMPLATE([CONFIG_SMP], [Enable SMP support. With SMP support enabled, uniprocessors are also supported. With SMP support disabled, UP systems work fine, but the behavior of SMP systems is undefined.]) -AH_TEMPLATE([CONFIG_HAVE_FENCE], [Defined when on a system that has memory fence -instructions.]) -AH_TEMPLATE([CONFIG_HAVE_FUTEX], [Defined when on a system with futex support.]) -AC_CONFIG_HEADERS([urcu/config.h]) +AC_CONFIG_HEADERS([config.h urcu/config.h]) + +# Keep at the end to do not pollute installed header. +AH_TEMPLATE([CONFIG_URCU_SMP], [Enable SMP support. With SMP support enabled, uniprocessors are also supported. With SMP support disabled, UP systems work fine, but the behavior of SMP systems is undefined.]) +AH_TEMPLATE([CONFIG_URCU_HAVE_FENCE], [Defined when on a system that has memory fence instructions.]) +AH_TEMPLATE([CONFIG_URCU_HAVE_FUTEX], [Defined when on a system with futex support.]) # Checks for programs. AC_PROG_CC @@ -53,14 +55,18 @@ AC_SUBST(ARCHTYPE) AC_SUBST(SUBARCHTYPE) [ -if test "x$ARCHTYPE" = "xx86" -a "x$target_cpu" != "xi386" -a "x$target_cpu" != "xi486" -a "x$target_cpu" != "xi586"; then +#if test "x$ARCHTYPE" = "xx86" -a "x$target_cpu" != "xi386" -a "x$target_cpu" != "xi486" -a "x$target_cpu" != "xi586"; then +#For now, using lock; addl compatibility mode even for i686, because the +#Pentium III is seen as a i686, but lacks mfence instruction. +#Only using fence for x86_64. +if test "x$ARCHTYPE" = "xx86" -a "x$target_cpu" != "xi386" -a "x$target_cpu" != "xi486" -a "x$target_cpu" != "xi586" -a "x$target_cpu" != "xi686"; then ] - AC_DEFINE([CONFIG_HAVE_FENCE], [1]) + AC_DEFINE([CONFIG_URCU_HAVE_FENCE], [1]) [ fi ] -AC_MSG_CHECKING([presence of sys_futex()]) +AC_MSG_CHECKING([sys_futex()]) AC_TRY_COMPILE( [ #include @@ -72,7 +78,7 @@ AC_TRY_COMPILE( ], [ AC_MSG_RESULT([yes]) - AC_DEFINE([CONFIG_HAVE_FUTEX], [1]) + AC_DEFINE([CONFIG_URCU_HAVE_FUTEX], [1]) compat_futex_test=0 ] , @@ -96,7 +102,7 @@ if test "$def_smp_support" = "no"; then echo "SMP support disabled." else ] - AC_DEFINE([CONFIG_SMP], [1]) + AC_DEFINE([CONFIG_URCU_SMP], [1]) [ echo "SMP support enabled." fi