X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=configure.ac;h=ea57e7e0c04f256e087377c060504c84b4fa91e4;hp=639b984901136a85b20d9f087d9b0c9cac9c32da;hb=a59f39055b5ecb77b68cf78b9839aa9e8e4ec332;hpb=6bf9e8eec9c9f2c9177e9ca0781f973605c011ed diff --git a/configure.ac b/configure.ac index 639b984..ea57e7e 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_INIT([userspace-rcu],[0.9.0],[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], [4:0:1]) +AC_SUBST([URCU_LIBRARY_VERSION], [5:0:1]) AC_CONFIG_SRCDIR([urcu.h]) AC_CONFIG_HEADERS([config.h urcu/config.h]) @@ -140,11 +140,6 @@ AS_CASE([$host_cpu], [ARCHTYPE="unknown"] ) -AS_CASE([$host],[*-*-linux-androideabi], - [AM_CONDITIONAL(TARGET_IS_ANDROID, true)], - [AM_CONDITIONAL(TARGET_IS_ANDROID, false)] -) - AS_CASE([$host],[*-cygwin*], [AM_CONDITIONAL(USE_CYGWIN, true)], [AM_CONDITIONAL(USE_CYGWIN, false)] @@ -236,15 +231,6 @@ AC_SEARCH_LIBS([clock_gettime], [rt], [ AC_DEFINE([CONFIG_RCU_HAVE_CLOCK_GETTIME], [1]) ], []) -# Check for pthread -AC_CHECK_LIB([pthread], [pthread_create], - [AM_CONDITIONAL(LIBC_INCLUDES_PTHREAD, false)], - [AC_CHECK_LIB([c], [pthread_create], - [AM_CONDITIONAL(LIBC_INCLUDES_PTHREAD, true)], - [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])] - )] -) - AM_CONDITIONAL([COMPAT_FUTEX], [test "x$compat_futex_test" = "x1"]) AM_CONDITIONAL([COMPAT_ARCH], [test "x$SUBARCHTYPE" = "xx86compat"]) AM_CONDITIONAL([NO_SHARED], [test "x$enable_shared" = "xno"])