X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=configure.ac;h=4ece75d24df3378eec161e599fe2e5238a913b6e;hp=2c1b6c00b26ce5c2bebe19c0e2eca4098459cd5f;hb=1ed9b67726a52a0f4189cc1b58ca0141f7b1614f;hpb=0854ccff976f2893a7f04aaa4b48090f423802a5 diff --git a/configure.ac b/configure.ac index 2c1b6c0..4ece75d 100644 --- a/configure.ac +++ b/configure.ac @@ -2,18 +2,22 @@ # 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.4], [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([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.]) +AH_TEMPLATE([CONFIG_URCU_COMPAT_ARCH], [Compatibility mode for i386 which lacks +cmpxchg instruction.]) # Checks for programs. AC_PROG_CC @@ -33,9 +37,9 @@ AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul]) # Find arch type case $target_cpu in i386) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;; - i486) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;; - i586) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;; - i686) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;; + i486) ARCHTYPE="x86";; + i586) ARCHTYPE="x86";; + i686) ARCHTYPE="x86";; x86_64) ARCHTYPE="x86";; powerpc) ARCHTYPE="ppc" ;; ppc64) ARCHTYPE="ppc" ;; @@ -43,6 +47,7 @@ case $target_cpu in ppc) ARCHTYPE="ppc" ;; s390) ARCHTYPE="s390" ;; s390x) ARCHTYPE="s390" ;; + sparc64) ARCHTYPE="sparc64" ;; *) ARCHTYPE="unknown";; esac @@ -53,14 +58,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 +81,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 ] , @@ -88,6 +97,14 @@ AM_CONDITIONAL([GCC_API], [test "x$ARCHTYPE" != xx86 -a "x$ARCHTYPE" != xppc]) AM_CONDITIONAL([COMPAT_ARCH], [test "x$SUBARCHTYPE" = xx86compat ]) +[ +if test "x$SUBARCHTYPE" = xx86compat; then +] + AC_DEFINE([CONFIG_URCU_COMPAT_ARCH], [1]) +[ +fi +] + AC_ARG_ENABLE([smp-support], [ --disable-smp-support Disable SMP support. Warning: only use this on uniprocessor systems. [[default=enabled]]], [def_smp_support=$enableval], [def_smp_support="yes"]) @@ -96,7 +113,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