Add missing scripts for ust notify and ust register
[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 # URCU library version needed or newer
16 liburcu_version="0.6.0"
17
18 # Check for pthread
19 AC_CHECK_LIB([pthread], [pthread_create], [],
20 [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])]
21 )
22
23 # Check libpopt
24 AC_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
29 AC_CHECK_DECL([cds_list_add], [],
30 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]]
31 )
32
33 # Check liburcu
34 AC_CHECK_DECL([caa_get_cycles], [],
35 [AC_MSG_ERROR([liburcu liburcu_version or newer is needed])], [[#include <urcu/arch.h>]]
36 )
37
38 AC_CHECK_DECL([cds_wfq_init], [],
39 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]]
40 )
41
42 AC_CHECK_DECL([futex_async], [],
43 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]]
44 )
45
46 AC_PROG_CC
47 AC_PROG_LIBTOOL
48
49 CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
50
51 DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir)"
52
53 lttngincludedir="${includedir}/lttng"
54
55 AC_SUBST(lttngincludedir)
56 AC_SUBST(DEFAULT_INCLUDES)
57
58 AC_CONFIG_FILES([
59 Makefile
60 include/Makefile
61 benchmark/Makefile
62 libkernelctl/Makefile
63 liblttngkconsumerd/Makefile
64 liblttngctl/Makefile
65 liblttng-sessiond-comm/Makefile
66 libustctl/Makefile
67 libustcomm/Makefile
68 ltt-kconsumerd/Makefile
69 ltt-sessiond/Makefile
70 lttng/Makefile
71 tests/Makefile
72 doc/Makefile
73 ])
74
75 AC_OUTPUT
This page took 0.030886 seconds and 4 git commands to generate.