Add AC_CONFIG_MACRO_DIR([m4]), re-add ACLOCAL_AMFLAGS
[urcu.git] / configure.ac
CommitLineData
48d848c7
PMF
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4
7eaaf6cb 5AC_INIT([userspace-rcu], [0.2.3-alpha], [mathieu dot desnoyers at polymtl dot ca])
48d848c7 6AC_CONFIG_AUX_DIR([config])
7d413817
MD
7AC_CANONICAL_TARGET
8AC_CANONICAL_HOST
48d848c7
PMF
9AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
10AC_CONFIG_SRCDIR([urcu.h])
7dd8417e 11AC_PROG_MKDIR_P
d22159d6 12AC_CONFIG_MACRO_DIR([m4])
7d413817 13
e72596d1
MD
14AC_CONFIG_HEADERS([config.h urcu/config.h])
15
16# Keep at the end to do not pollute installed header.
49617de1
MD
17AH_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.])
18AH_TEMPLATE([CONFIG_URCU_HAVE_FENCE], [Defined when on a system that has memory fence instructions.])
19AH_TEMPLATE([CONFIG_URCU_HAVE_FUTEX], [Defined when on a system with futex support.])
48d848c7
PMF
20
21# Checks for programs.
22AC_PROG_CC
23AC_PROG_MAKE_SET
24AC_PROG_LIBTOOL
25
26# Checks for typedefs, structures, and compiler characteristics.
27AC_C_INLINE
28AC_TYPE_PID_T
29AC_TYPE_SIZE_T
30
31# Checks for library functions.
32AC_FUNC_MALLOC
33AC_FUNC_MMAP
34AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
35
36# Find arch type
7d413817
MD
37case $target_cpu in
38 i386) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;;
39 i486) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;;
40 i586) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;;
41 i686) ARCHTYPE="x86"; SUBARCHTYPE="x86compat" ;;
48d848c7 42 x86_64) ARCHTYPE="x86";;
48d848c7
PMF
43 powerpc) ARCHTYPE="ppc" ;;
44 ppc64) ARCHTYPE="ppc" ;;
7d413817 45 powerpc64) ARCHTYPE="ppc" ;;
48d848c7
PMF
46 ppc) ARCHTYPE="ppc" ;;
47 s390) ARCHTYPE="s390" ;;
48 s390x) ARCHTYPE="s390" ;;
49 *) ARCHTYPE="unknown";;
50esac
51
52if test "$ARCHTYPE" = "unknown"; then
53 AC_MSG_ERROR([Unable to detect the architecture.])
54fi
55AC_SUBST(ARCHTYPE)
7d413817 56AC_SUBST(SUBARCHTYPE)
48d848c7 57
90586875 58[
79da867e 59if test "x$ARCHTYPE" = "xx86" -a "x$target_cpu" != "xi386" -a "x$target_cpu" != "xi486" -a "x$target_cpu" != "xi586"; then
90586875 60]
49617de1 61 AC_DEFINE([CONFIG_URCU_HAVE_FENCE], [1])
90586875
MD
62[
63fi
64]
65
49617de1 66AC_MSG_CHECKING([sys_futex()])
0854ccff
MD
67AC_TRY_COMPILE(
68[
69#include <sys/syscall.h>
70],
71[
72#ifndef __NR_futex
73#error "futexes not available"
74#endif
75],
76[
77 AC_MSG_RESULT([yes])
49617de1 78 AC_DEFINE([CONFIG_URCU_HAVE_FUTEX], [1])
0854ccff
MD
79 compat_futex_test=0
80]
81,
82[
83 AC_MSG_RESULT([no])
84 compat_futex_test=1
85]
86)
87
88AM_CONDITIONAL([COMPAT_FUTEX], [ test "x$compat_futex_test" = "x1" ])
89
40646e1e 90AM_CONDITIONAL([GCC_API], [test "x$ARCHTYPE" != xx86 -a "x$ARCHTYPE" != xppc])
48d848c7 91
0854ccff 92AM_CONDITIONAL([COMPAT_ARCH], [test "x$SUBARCHTYPE" = xx86compat ])
7d413817
MD
93
94AC_ARG_ENABLE([smp-support], [ --disable-smp-support Disable SMP support. Warning: only use this
95 on uniprocessor systems. [[default=enabled]]], [def_smp_support=$enableval], [def_smp_support="yes"])
96
97[
98if test "$def_smp_support" = "no"; then
99 echo "SMP support disabled."
100else
101]
49617de1 102 AC_DEFINE([CONFIG_URCU_SMP], [1])
7d413817
MD
103[
104 echo "SMP support enabled."
105fi
106]
48d848c7
PMF
107
108AC_CONFIG_FILES([
109 Makefile
110 tests/Makefile
111])
112AC_OUTPUT
This page took 0.027039 seconds and 4 git commands to generate.