Add unregister measures
[lttng-tools.git] / configure.ac
CommitLineData
ab7f4103 1AC_INIT([lttng-tools], [2.0-pre14], [david.goulet@polymtl.ca], ,[http://lttng.org])
fac6795d 2AC_CONFIG_AUX_DIR([config])
6e2d116c
DG
3AC_CANONICAL_TARGET
4AC_CANONICAL_HOST
fac6795d 5AC_CONFIG_MACRO_DIR([config])
0403d7c9 6AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
fac6795d
DG
7AM_SILENT_RULES([yes])
8
9AC_CHECK_HEADERS([ \
10 sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \
11 signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \
12 getopt.h sys/ipc.h sys/shm.h popt.h grp.h \
13])
14
8e12081b 15# URCU library version needed or newer
3ffccaed 16liburcu_version=">= 0.6.5"
8e12081b 17
fac6795d
DG
18# Check for pthread
19AC_CHECK_LIB([pthread], [pthread_create], [],
20 [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])]
21)
22
23# Check libpopt
24AC_CHECK_LIB([popt], [poptGetContext], [],
25 [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])]
26)
27
4f58e627 28# Needed for benchmark time
3c6bae61 29AC_CHECK_DECL([caa_get_cycles], [],
aebe93ee
DG
30 [AC_MSG_ERROR([liburcu liburcu_version or newer is needed])], [[#include <urcu/arch.h>]]
31)
32
3ffccaed 33# Check liburcu needed function calls
fac6795d 34AC_CHECK_DECL([cds_list_add], [],
8e12081b 35 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]]
fac6795d 36)
099e26bd 37AC_CHECK_DECL([cds_wfq_init], [],
8e12081b
DG
38 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]]
39)
8e12081b
DG
40AC_CHECK_DECL([futex_async], [],
41 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]]
3c6bae61 42)
3ffccaed
DG
43AC_CHECK_DECL([rcu_thread_offline], [],
44 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
45)
46AC_CHECK_DECL([rcu_thread_online], [],
47 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
48)
3c6bae61 49
3ffccaed 50# Epoll check. If not present, the build will fallback on poll() API
71615260
DG
51AX_HAVE_EPOLL(
52 [AX_CONFIG_FEATURE_ENABLE(epoll)],
53 [AX_CONFIG_FEATURE_DISABLE(epoll)]
54)
71615260
DG
55AX_CONFIG_FEATURE(
56 [epoll], [This platform supports epoll(7)],
57 [HAVE_EPOLL], [This platform supports epoll(7).],
58 [enable_epoll="yes"], [enable_epoll="no"]
59)
71615260
DG
60AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ])
61
fac6795d
DG
62AC_PROG_CC
63AC_PROG_LIBTOOL
64
6e2d116c
DG
65CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
66
67DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir)"
68
69lttngincludedir="${includedir}/lttng"
70
71AC_SUBST(lttngincludedir)
72AC_SUBST(DEFAULT_INCLUDES)
73
fac6795d
DG
74AC_CONFIG_FILES([
75 Makefile
76 include/Makefile
b25a8868 77 benchmark/Makefile
ee0326c0 78 libkernelctl/Makefile
6533b585 79 liblttngkconsumerd/Makefile
fac6795d 80 liblttngctl/Makefile
ca3c5ac0 81 liblttng-sessiond-comm/Makefile
62d3069f
DG
82 libustctl/Makefile
83 libustcomm/Makefile
2b1173d8 84 ltt-kconsumerd/Makefile
6e0ca3c2 85 ltt-sessiond/Makefile
fac6795d
DG
86 lttng/Makefile
87 tests/Makefile
ebb6ebd5 88 doc/Makefile
fac6795d
DG
89])
90
91AC_OUTPUT
This page took 0.02753 seconds and 4 git commands to generate.