X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=configure.ac;h=95dfa78a8e2c591fb627dbd11c7122f052bbfe71;hb=refs%2Fheads%2Fstable-0.8;hp=8422fc59a17a8560c6786d98ff0dffb987e4858c;hpb=74b357c4e71da36c7be88706abf7908c10258050;p=userspace-rcu.git diff --git a/configure.ac b/configure.ac index 8422fc5..95dfa78 100644 --- a/configure.ac +++ b/configure.ac @@ -2,11 +2,11 @@ # Process this file with autoconf to produce a configure script. -AC_INIT([userspace-rcu],[0.8.9],[mathieu dot desnoyers at efficios dot com]) +AC_INIT([userspace-rcu],[0.8.11],[mathieu dot desnoyers at efficios dot com]) # Following the numbering scheme proposed by libtool for the library version # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html -AC_SUBST([URCU_LIBRARY_VERSION], [2:0:0]) +AC_SUBST([URCU_LIBRARY_VERSION], [3:0:1]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_MACRO_DIR([config]) @@ -54,10 +54,12 @@ AC_TYPE_PID_T AC_TYPE_SIZE_T # Checks for library functions. -AC_FUNC_MALLOC AC_FUNC_MMAP AC_CHECK_FUNCS([bzero gettimeofday munmap sched_getcpu strtoul sysconf]) +# AC_FUNC_MALLOC causes problems when cross-compiling. +#AC_FUNC_MALLOC + # Find arch type AS_CASE([$host_cpu], [i386], [ARCHTYPE="x86" && SUBARCHTYPE="x86compat"], @@ -95,7 +97,7 @@ AS_IF([test "x$SUBARCHTYPE" = xx86compat],[ ]) AS_IF([test "$host_cpu" = "armv7l"],[ - CFLAGS="$CFLAGS -mcpu=cortex-a9 -mtune=cortex-a9 -O1" + AM_CFLAGS="$AM_CFLAGS -mcpu=cortex-a9 -mtune=cortex-a9 -O1" ]) # ARM-specific checks @@ -203,8 +205,8 @@ AS_IF([test "x$def_smp_support" = "xyes"], [AC_DEFINE([CONFIG_RCU_SMP], [1])]) # Since we define _GNU_SOURCE in the sources, must do so too in the # autoconf tests, as defining _GNU_SOURCE or not exposes # sched_setaffinity bits differently. -saved_CFLAGS=$CFLAGS -CFLAGS="$CFLAGS -D_GNU_SOURCE" +saved_CFLAGS="$CFLAGS" +CFLAGS="$CFLAGS $AM_CFLAGS -D_GNU_SOURCE" AC_CHECK_TYPES([cpu_set_t], [have_cpu_set_t="yes"], @@ -285,6 +287,7 @@ AC_CHECK_FUNCS([sched_setaffinity],[ ]) CFLAGS=$saved_CFLAGS +AC_SUBST(AM_CFLAGS) AC_CONFIG_LINKS([ urcu/arch.h:$ARCHSRC