X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=configure.ac;h=707c06e367fd43e88e06ae99c37033285c27c013;hp=be9fd72b499b7e9fef75d02da51ce01f93a8bbae;hb=41dd620f9f398017e5fb3716e4a5153bb1da9ecf;hpb=49617de1d80d771ac9a1d45b1710b16fac65e0aa diff --git a/configure.ac b/configure.ac index be9fd72..707c06e 100644 --- a/configure.ac +++ b/configure.ac @@ -8,11 +8,15 @@ AC_CANONICAL_TARGET AC_CANONICAL_HOST AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip]) AC_CONFIG_SRCDIR([urcu.h]) +AC_PROG_MKDIR_P +AC_CONFIG_MACRO_DIR([m4]) +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.]) -AC_CONFIG_HEADERS([urcu/config.h]) # Checks for programs. AC_PROG_CC @@ -52,7 +56,11 @@ 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_URCU_HAVE_FENCE], [1]) [