Fix tree after master branch merge
[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
3bd1e081
MD
9AC_CONFIG_HEADERS([include/config.h])
10
11AH_TEMPLATE([CONFIG_LTTNG_TOOLS_HAVE_UST], [Defined on systems where UST headers can be found.])
12
fac6795d
DG
13AC_CHECK_HEADERS([ \
14 sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \
15 signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \
16 getopt.h sys/ipc.h sys/shm.h popt.h grp.h \
17])
18
8e12081b 19# URCU library version needed or newer
3ffccaed 20liburcu_version=">= 0.6.5"
8e12081b 21
fac6795d
DG
22# Check for pthread
23AC_CHECK_LIB([pthread], [pthread_create], [],
24 [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])]
25)
26
27# Check libpopt
28AC_CHECK_LIB([popt], [poptGetContext], [],
29 [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])]
30)
31
4f58e627 32# Needed for benchmark time
3c6bae61 33AC_CHECK_DECL([caa_get_cycles], [],
aebe93ee
DG
34 [AC_MSG_ERROR([liburcu liburcu_version or newer is needed])], [[#include <urcu/arch.h>]]
35)
36
3ffccaed 37# Check liburcu needed function calls
fac6795d 38AC_CHECK_DECL([cds_list_add], [],
8e12081b 39 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]]
fac6795d 40)
099e26bd 41AC_CHECK_DECL([cds_wfq_init], [],
8e12081b
DG
42 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]]
43)
8e12081b
DG
44AC_CHECK_DECL([futex_async], [],
45 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]]
3c6bae61 46)
3ffccaed
DG
47AC_CHECK_DECL([rcu_thread_offline], [],
48 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
49)
50AC_CHECK_DECL([rcu_thread_online], [],
51 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
52)
3bd1e081
MD
53AC_CHECK_DECL([ustctl_create_session],
54 [
55 AC_DEFINE([CONFIG_LTTNG_TOOLS_HAVE_UST], 1)
56 have_ust_test=1
57 ],
58 [
59 AC_MSG_WARN([UST header not found. Building without UST support.])
60 have_ust_test=0
61 ],
62 [[#include <ust/lttng-ust-ctl.h>]]
63)
64
65AM_CONDITIONAL([LTTNG_TOOLS_HAVE_UST], [ test "x$have_ust_test" = "x1" ])
099e26bd 66
f6a9efaa 67AC_CHECK_FUNCS([sched_getcpu sysconf])
3c6bae61 68
3ffccaed 69# Epoll check. If not present, the build will fallback on poll() API
71615260
DG
70AX_HAVE_EPOLL(
71 [AX_CONFIG_FEATURE_ENABLE(epoll)],
72 [AX_CONFIG_FEATURE_DISABLE(epoll)]
73)
71615260
DG
74AX_CONFIG_FEATURE(
75 [epoll], [This platform supports epoll(7)],
76 [HAVE_EPOLL], [This platform supports epoll(7).],
77 [enable_epoll="yes"], [enable_epoll="no"]
78)
71615260
DG
79AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ])
80
fac6795d
DG
81AC_PROG_CC
82AC_PROG_LIBTOOL
83
6e2d116c
DG
84CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
85
86DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir)"
87
88lttngincludedir="${includedir}/lttng"
89
90AC_SUBST(lttngincludedir)
91AC_SUBST(DEFAULT_INCLUDES)
92
fac6795d
DG
93AC_CONFIG_FILES([
94 Makefile
95 include/Makefile
b25a8868 96 benchmark/Makefile
ee0326c0 97 libkernelctl/Makefile
3bd1e081
MD
98 liblttng-consumer/Makefile
99 liblttng-kconsumer/Makefile
100 liblttng-ustconsumer/Makefile
fac6795d 101 liblttngctl/Makefile
ca3c5ac0 102 liblttng-sessiond-comm/Makefile
3bd1e081 103 lttng-consumerd/Makefile
32258573 104 lttng-sessiond/Makefile
fac6795d
DG
105 lttng/Makefile
106 tests/Makefile
ebb6ebd5 107 doc/Makefile
fac6795d
DG
108])
109
110AC_OUTPUT
This page took 0.028696 seconds and 4 git commands to generate.