Commit | Line | Data |
---|---|---|
92f34f1f | 1 | AC_INIT([lttng-tools], [2.0-pre9], [david.goulet@polymtl.ca], ,[http://lttng.org]) |
fac6795d | 2 | AC_CONFIG_AUX_DIR([config]) |
6e2d116c DG |
3 | AC_CANONICAL_TARGET |
4 | AC_CANONICAL_HOST | |
fac6795d | 5 | AC_CONFIG_MACRO_DIR([config]) |
0403d7c9 | 6 | AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip]) |
fac6795d DG |
7 | AM_SILENT_RULES([yes]) |
8 | ||
9 | AC_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 | |
16 | AC_CHECK_LIB([pthread], [pthread_create], [], | |
17 | [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])] | |
18 | ) | |
19 | ||
20 | # Check libpopt | |
21 | AC_CHECK_LIB([popt], [poptGetContext], [], | |
22 | [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])] | |
23 | ) | |
24 | ||
fac6795d | 25 | # Check liburcu |
fac6795d DG |
26 | AC_CHECK_DECL([cds_list_add], [], |
27 | [AC_MSG_ERROR([liburcu 0.5.4 or newer is needed])], [[#include <urcu/list.h>]] | |
28 | ) | |
29 | ||
fac6795d DG |
30 | AC_PROG_CC |
31 | AC_PROG_LIBTOOL | |
32 | ||
6e2d116c DG |
33 | CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing" |
34 | ||
35 | DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir)" | |
36 | ||
37 | lttngincludedir="${includedir}/lttng" | |
38 | ||
39 | AC_SUBST(lttngincludedir) | |
40 | AC_SUBST(DEFAULT_INCLUDES) | |
41 | ||
fac6795d DG |
42 | AC_CONFIG_FILES([ |
43 | Makefile | |
44 | include/Makefile | |
ee0326c0 | 45 | libkernelctl/Makefile |
1ce86c9a | 46 | liblttkconsumerd/Makefile |
fac6795d DG |
47 | liblttngctl/Makefile |
48 | liblttsessiondcomm/Makefile | |
62d3069f DG |
49 | libustctl/Makefile |
50 | libustcomm/Makefile | |
2b1173d8 | 51 | ltt-kconsumerd/Makefile |
6e0ca3c2 | 52 | ltt-sessiond/Makefile |
fac6795d DG |
53 | lttng/Makefile |
54 | tests/Makefile | |
ebb6ebd5 | 55 | doc/Makefile |
fac6795d DG |
56 | ]) |
57 | ||
58 | AC_OUTPUT |