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