Add missing function references with no UST support
[lttng-tools.git] / configure.ac
1 AC_INIT([lttng-tools], [2.0-pre14], [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_CONFIG_HEADERS([include/config.h])
10
11 AC_CHECK_HEADERS([ \
12 sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \
13 signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \
14 getopt.h sys/ipc.h sys/shm.h popt.h grp.h \
15 ])
16
17 # Check for pthread
18 AC_CHECK_LIB([pthread], [pthread_create], [],
19 [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])]
20 )
21
22 # Check libpopt
23 AC_CHECK_LIB([popt], [poptGetContext], [],
24 [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])]
25 )
26
27 # URCU library version needed or newer
28 liburcu_version=">= 0.6.6"
29
30 # Check liburcu needed function calls
31 AC_CHECK_DECL([cds_list_add], [],
32 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]]
33 )
34 AC_CHECK_DECL([cds_wfq_init], [],
35 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]]
36 )
37 AC_CHECK_DECL([futex_async], [],
38 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]]
39 )
40 AC_CHECK_DECL([rcu_thread_offline], [],
41 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
42 )
43 AC_CHECK_DECL([rcu_thread_online], [],
44 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
45 )
46 AC_CHECK_DECL([caa_likely], [],
47 [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]]
48 )
49
50 # Check liblttng-ust-ctl library
51 AC_ARG_ENABLE(lttng-ust,
52 [ --disable-lttng-ust build without LTTng-UST (Userspace Tracing) support.],
53 lttng_ust_support=no, lttng_ust_support=yes)
54
55 [
56 if test "x$lttng_ust_support" = "xno"; then
57 echo "LTTng-UST support disabled."
58 else
59 ]
60 AC_CHECK_LIB([lttng-ust-ctl], [ustctl_create_session], [],
61 [AC_MSG_ERROR([Cannot find LTTng-UST. Use [LDFLAGS]=-Ldir to specify its location, or specify --disable-lttng-ust to build lttng-tools without LTTng-UST support.])]
62 )
63 [
64 echo "LTTng-UST support enabled."
65 fi
66 ]
67
68 AM_CONDITIONAL([HAVE_LIBLTTNG_UST_CTL], [ test "x$ac_cv_lib_lttng_ust_ctl_ustctl_create_session" = "xyes" ])
69
70 AC_CHECK_FUNCS([sched_getcpu sysconf])
71
72 # Epoll check. If not present, the build will fallback on poll() API
73 AX_HAVE_EPOLL(
74 [AX_CONFIG_FEATURE_ENABLE(epoll)],
75 [AX_CONFIG_FEATURE_DISABLE(epoll)]
76 )
77 AX_CONFIG_FEATURE(
78 [epoll], [This platform supports epoll(7)],
79 [HAVE_EPOLL], [This platform supports epoll(7).],
80 [enable_epoll="yes"], [enable_epoll="no"]
81 )
82 AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ])
83
84 AC_PROG_CC
85 AC_PROG_LIBTOOL
86
87 CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing"
88
89 DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir)"
90
91 lttngincludedir="${includedir}/lttng"
92
93 AC_SUBST(lttngincludedir)
94 AC_SUBST(DEFAULT_INCLUDES)
95
96 AC_CONFIG_FILES([
97 Makefile
98 include/Makefile
99 libkernelctl/Makefile
100 liblttng-consumer/Makefile
101 liblttng-kconsumer/Makefile
102 liblttng-ustconsumer/Makefile
103 liblttngctl/Makefile
104 liblttng-sessiond-comm/Makefile
105 lttng-consumerd/Makefile
106 lttng-sessiond/Makefile
107 lttng/Makefile
108 tests/Makefile
109 doc/Makefile
110 ])
111
112 AC_OUTPUT
This page took 0.032217 seconds and 5 git commands to generate.