Fix enable-channel that did not handle correctly lttng domains
[lttng-tools.git] / configure.ac
... / ...
CommitLineData
1AC_INIT([lttng-tools], [2.0-pre12], [david.goulet@polymtl.ca], ,[http://lttng.org])
2AC_CONFIG_AUX_DIR([config])
3AC_CANONICAL_TARGET
4AC_CANONICAL_HOST
5AC_CONFIG_MACRO_DIR([config])
6AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
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
15# URCU library version needed or newer
16liburcu_version="0.6.0"
17
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
28# Check liburcu list.h, wfqueue.h, futex.h
29AC_CHECK_DECL([cds_list_add], [],
30 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]]
31)
32
33AC_CHECK_DECL([cds_wfq_init], [],
34 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]]
35)
36
37AC_CHECK_DECL([futex_async], [],
38 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]]
39)
40
41AC_PROG_CC
42AC_PROG_LIBTOOL
43
44CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
45
46DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir)"
47
48lttngincludedir="${includedir}/lttng"
49
50AC_SUBST(lttngincludedir)
51AC_SUBST(DEFAULT_INCLUDES)
52
53AC_CONFIG_FILES([
54 Makefile
55 include/Makefile
56 libkernelctl/Makefile
57 liblttngkconsumerd/Makefile
58 liblttngctl/Makefile
59 liblttng-sessiond-comm/Makefile
60 libustctl/Makefile
61 libustcomm/Makefile
62 ltt-kconsumerd/Makefile
63 ltt-sessiond/Makefile
64 lttng/Makefile
65 tests/Makefile
66 doc/Makefile
67])
68
69AC_OUTPUT
This page took 0.023591 seconds and 5 git commands to generate.