Merge branch 'master' into benchmark
[lttng-tools.git] / configure.ac
CommitLineData
775182fa 1AC_INIT([lttng-tools], [2.0-pre13], [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
DG
15# URCU library version needed or newer
16liburcu_version="0.6.0"
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
8e12081b 28# Check liburcu list.h, wfqueue.h, futex.h
fac6795d 29AC_CHECK_DECL([cds_list_add], [],
8e12081b 30 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]]
fac6795d
DG
31)
32
3c6bae61
DG
33# Check liburcu
34AC_CHECK_DECL([caa_get_cycles], [],
aebe93ee
DG
35 [AC_MSG_ERROR([liburcu liburcu_version or newer is needed])], [[#include <urcu/arch.h>]]
36)
37
099e26bd 38AC_CHECK_DECL([cds_wfq_init], [],
8e12081b
DG
39 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]]
40)
41
42AC_CHECK_DECL([futex_async], [],
43 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]]
3c6bae61
DG
44)
45
71615260
DG
46AX_HAVE_EPOLL(
47 [AX_CONFIG_FEATURE_ENABLE(epoll)],
48 [AX_CONFIG_FEATURE_DISABLE(epoll)]
49)
50
51AX_CONFIG_FEATURE(
52 [epoll], [This platform supports epoll(7)],
53 [HAVE_EPOLL], [This platform supports epoll(7).],
54 [enable_epoll="yes"], [enable_epoll="no"]
55)
56
57AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ])
58
fac6795d
DG
59AC_PROG_CC
60AC_PROG_LIBTOOL
61
6e2d116c
DG
62CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
63
64DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir)"
65
66lttngincludedir="${includedir}/lttng"
67
68AC_SUBST(lttngincludedir)
69AC_SUBST(DEFAULT_INCLUDES)
70
fac6795d
DG
71AC_CONFIG_FILES([
72 Makefile
73 include/Makefile
b25a8868 74 benchmark/Makefile
ee0326c0 75 libkernelctl/Makefile
6533b585 76 liblttngkconsumerd/Makefile
fac6795d 77 liblttngctl/Makefile
ca3c5ac0 78 liblttng-sessiond-comm/Makefile
62d3069f
DG
79 libustctl/Makefile
80 libustcomm/Makefile
2b1173d8 81 ltt-kconsumerd/Makefile
6e0ca3c2 82 ltt-sessiond/Makefile
fac6795d
DG
83 lttng/Makefile
84 tests/Makefile
ebb6ebd5 85 doc/Makefile
fac6795d
DG
86])
87
88AC_OUTPUT
This page took 0.027013 seconds and 4 git commands to generate.