Add utils.c and recursive mkdir function
[lttng-tools.git] / configure.ac
CommitLineData
fac6795d
DG
1AC_INIT([lttng-tools], [0.0.1], [david.goulet@polymtl.ca], [http://lttng.org])
2AC_CONFIG_AUX_DIR([config])
3AC_CONFIG_MACRO_DIR([config])
4AM_INIT_AUTOMAKE
5AM_SILENT_RULES([yes])
6
7AC_CHECK_HEADERS([ \
8 sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \
9 signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \
10 getopt.h sys/ipc.h sys/shm.h popt.h grp.h \
11])
12
13# Check for pthread
14AC_CHECK_LIB([pthread], [pthread_create], [],
15 [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])]
16)
17
18# Check libpopt
19AC_CHECK_LIB([popt], [poptGetContext], [],
20 [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])]
21)
22
23# Check libuuid
24AC_CHECK_LIB([uuid], [uuid_generate], [],
25 [AC_MSG_ERROR([Cannot find libuuid. Use [LDFLAGS]=-Ldir to specify its location.])]
26)
27
fac6795d 28# Check liburcu
fac6795d
DG
29AC_CHECK_DECL([cds_list_add], [],
30 [AC_MSG_ERROR([liburcu 0.5.4 or newer is needed])], [[#include <urcu/list.h>]]
31)
32
aaf97519 33CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
fac6795d
DG
34
35AC_PROG_CC
36AC_PROG_LIBTOOL
37
38AC_CONFIG_FILES([
39 Makefile
40 include/Makefile
ee0326c0 41 libkernelctl/Makefile
fac6795d
DG
42 liblttngctl/Makefile
43 liblttsessiondcomm/Makefile
62d3069f
DG
44 libustctl/Makefile
45 libustcomm/Makefile
6e0ca3c2 46 ltt-sessiond/Makefile
fac6795d 47 lttng/Makefile
d4a1283e 48 kconsumerd/Makefile
fac6795d 49 tests/Makefile
6e0ca3c2 50 tests/ltt-sessiond/Makefile
fac6795d
DG
51])
52
53AC_OUTPUT
This page took 0.024714 seconds and 4 git commands to generate.