Merge branch 'master' into benchmark
[lttng-tools.git] / configure.ac
CommitLineData
3df9eaf3 1AC_INIT([lttng-tools], [2.0-pre11], [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
15# Check for pthread
16AC_CHECK_LIB([pthread], [pthread_create], [],
17 [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])]
18)
19
20# Check libpopt
21AC_CHECK_LIB([popt], [poptGetContext], [],
22 [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])]
23)
24
099e26bd 25# Check liburcu list.h
fac6795d
DG
26AC_CHECK_DECL([cds_list_add], [],
27 [AC_MSG_ERROR([liburcu 0.5.4 or newer is needed])], [[#include <urcu/list.h>]]
28)
29
6e81efd4 30<<<<<<< HEAD
3c6bae61
DG
31# Check liburcu
32AC_CHECK_DECL([caa_get_cycles], [],
33 [AC_MSG_ERROR([liburcu 0.5.4 or newer is needed])], [[#include <urcu/arch.h>]]
6e81efd4 34=======
099e26bd
DG
35# Check liburcu wfqueue.h
36AC_CHECK_DECL([cds_wfq_init], [],
37 [AC_MSG_ERROR([liburcu 0.5.4 or newer is needed])], [[#include <urcu/wfqueue.h>]]
6e81efd4 38>>>>>>> master
3c6bae61
DG
39)
40
fac6795d
DG
41AC_PROG_CC
42AC_PROG_LIBTOOL
43
6e2d116c
DG
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
fac6795d
DG
53AC_CONFIG_FILES([
54 Makefile
55 include/Makefile
b25a8868 56 benchmark/Makefile
ee0326c0 57 libkernelctl/Makefile
6533b585 58 liblttngkconsumerd/Makefile
fac6795d 59 liblttngctl/Makefile
ca3c5ac0 60 liblttng-sessiond-comm/Makefile
62d3069f
DG
61 libustctl/Makefile
62 libustcomm/Makefile
2b1173d8 63 ltt-kconsumerd/Makefile
6e0ca3c2 64 ltt-sessiond/Makefile
fac6795d
DG
65 lttng/Makefile
66 tests/Makefile
ebb6ebd5 67 doc/Makefile
fac6795d
DG
68])
69
70AC_OUTPUT
This page took 0.033735 seconds and 4 git commands to generate.