Cleanup: remove leftover manual pthread detection
[urcu.git] / configure.ac
index 8eec26951e47dce19691843c4b44807c531215a5..ea57e7e0c04f256e087377c060504c84b4fa91e4 100644 (file)
@@ -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:0])
+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"])
This page took 0.022812 seconds and 4 git commands to generate.