Commit | Line | Data |
---|---|---|
241aaca9 | 1 | AC_INIT([lttng-tools],[2.1.0-rc6],[dgoulet@efficios.com],[],[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]) |
c615ee2f | 7 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) |
fac6795d | 8 | |
68264071 DG |
9 | version_name="Basse Messe" |
10 | version_description="Light coloured German ale whose style was named after the city Cologne (Koln) where it was first brewed. It is a rather simple beer with lightly fruity aromas and a delicate hoppy fragrance. The beer has a pronounced malty taste with a subtle bitter aftertaste" | |
0e4cbe7e DG |
11 | |
12 | AC_DEFINE_UNQUOTED([VERSION_NAME], ["$version_name"], "") | |
13 | AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], ["$version_description"], "") | |
c6d4a597 | 14 | |
3bd1e081 MD |
15 | AC_CONFIG_HEADERS([include/config.h]) |
16 | ||
6bd5984c CB |
17 | AC_PROG_GREP |
18 | # libtool link_all_deplibs fixup. See http://bugs.lttng.org/issues/321. | |
19 | AC_ARG_ENABLE(libtool-linkdep-fixup, | |
20 | AS_HELP_STRING([--disable-libtool-linkdep-fixup], | |
21 | [disable the libtool fixup for linking all dependent libraries (link_all_deplibs)]), | |
22 | libtool_fixup=$enableval, | |
23 | libtool_fixup=yes) | |
24 | ||
25 | AS_IF([test "x$libtool_fixup" = "xyes"], | |
26 | [ | |
27 | libtool_m4="$srcdir/config/libtool.m4" | |
28 | libtool_flag_pattern=".*link_all_deplibs\s*,\s*\$1\s*)" | |
29 | AC_MSG_CHECKING([for occurence(s) of link_all_deplibs = no in $libtool_m4]) | |
30 | libtool_flag_pattern_count=$(grep -c "$libtool_flag_pattern\s*=\s*no" $libtool_m4) | |
31 | AS_IF([test $libtool_flag_pattern_count -ne 0], | |
32 | [ | |
33 | AC_MSG_RESULT([$libtool_flag_pattern_count]) | |
34 | AC_MSG_WARN([the detected libtool will not link all dependencies, forcing link_all_deplibs = unknown]) | |
35 | sed -i "s/\($libtool_flag_pattern\)\s*=\s*no/\1=unknown/g" $libtool_m4 | |
36 | ], | |
37 | [ | |
38 | AC_MSG_RESULT([none]) | |
39 | ]) | |
40 | ]) | |
41 | ||
347e0f14 CB |
42 | AM_CONDITIONAL([NO_SHARED], [test x$enable_shared = xno]) |
43 | ||
fac6795d DG |
44 | AC_CHECK_HEADERS([ \ |
45 | sys/types.h unistd.h fcntl.h string.h pthread.h limits.h \ | |
46 | signal.h stdlib.h sys/un.h sys/socket.h stdlib.h stdio.h \ | |
47 | getopt.h sys/ipc.h sys/shm.h popt.h grp.h \ | |
48 | ]) | |
49 | ||
0c95f5b2 DG |
50 | # Babeltrace viewer check |
51 | AC_ARG_WITH([babeltrace-bin], | |
52 | AS_HELP_STRING([--with-babeltrace-bin], | |
53 | [Location of the babeltrace viewer executable (including the filename)]), | |
54 | [BABELTRACE_BIN="$withval"], | |
55 | [BABELTRACE_BIN='']) | |
56 | AC_SUBST([BABELTRACE_BIN]) | |
57 | ||
58 | # lttv-gui | |
59 | AC_ARG_WITH([lttv-gui-bin], | |
60 | AS_HELP_STRING([--with-lttv-gui-bin], | |
61 | [Location of the lttv GUI viewer executable (including the filename)]), | |
62 | [LTTV_GUI_BIN="$withval"], | |
63 | [LTTV_GUI_BIN='']) | |
64 | AC_SUBST([LTTV_GUI_BIN]) | |
65 | ||
fc7a59ce AM |
66 | AC_ARG_WITH([consumerd32-bin], |
67 | AS_HELP_STRING([--with-consumerd32-bin], | |
68 | [Location of the 32-bit consumerd executable (including the filename)]), | |
69 | [CONSUMERD32_BIN="$withval"], | |
70 | [CONSUMERD32_BIN='']) | |
71 | AC_SUBST([CONSUMERD32_BIN]) | |
ebaeda94 | 72 | |
fc7a59ce AM |
73 | AC_ARG_WITH([consumerd64-bin], |
74 | AS_HELP_STRING([--with-consumerd64-bin], | |
75 | [Location of the 64-bit consumerd executable (including the filename)]), | |
76 | [CONSUMERD64_BIN="$withval"], | |
77 | [CONSUMERD64_BIN='']) | |
78 | AC_SUBST([CONSUMERD64_BIN]) | |
ebaeda94 MD |
79 | |
80 | AC_ARG_WITH([consumerd32-libdir], | |
a4b279ba | 81 | AS_HELP_STRING([--with-consumerd32-libdir], |
fc7a59ce | 82 | [Directory containing the 32-bit consumerd libraries]), |
ebaeda94 MD |
83 | [CONSUMERD32_LIBDIR="$withval"], |
84 | [CONSUMERD32_LIBDIR='']) | |
85 | AC_SUBST([CONSUMERD32_LIBDIR]) | |
86 | ||
ec029701 | 87 | AC_ARG_WITH([consumerd64-libdir], |
a4b279ba | 88 | AS_HELP_STRING([--with-consumerd64-libdir], |
fc7a59ce | 89 | [Directory containing the 64-bit consumerd libraries]), |
ebaeda94 MD |
90 | [CONSUMERD64_LIBDIR="$withval"], |
91 | [CONSUMERD64_LIBDIR='']) | |
92 | AC_SUBST([CONSUMERD64_LIBDIR]) | |
93 | ||
fb6f1fa2 YB |
94 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_BIN], "$CONSUMERD32_BIN", [Location of the 32-bit consumerd executable.]) |
95 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_BIN], "$CONSUMERD64_BIN", [Location of the 64-bit consumerd executable]) | |
96 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD32_LIBDIR], "$CONSUMERD32_LIBDIR", [Search for consumerd 32-bit libraries in this location.]) | |
97 | AC_DEFINE_UNQUOTED([CONFIG_CONSUMERD64_LIBDIR], "$CONSUMERD64_LIBDIR", [Search for consumerd 64-bit libraries in this location.]) | |
0c95f5b2 DG |
98 | AC_DEFINE_UNQUOTED([CONFIG_BABELTRACE_BIN], "$BABELTRACE_BIN", [Location of the babeltrace viewer executable.]) |
99 | AC_DEFINE_UNQUOTED([CONFIG_LTTV_GUI_BIN], "$LTTV_GUI_BIN", [Location of the lttv GUI viewer executable.]) | |
43cadc7e | 100 | |
fac6795d DG |
101 | # Check for pthread |
102 | AC_CHECK_LIB([pthread], [pthread_create], [], | |
103 | [AC_MSG_ERROR([Cannot find libpthread. Use [LDFLAGS]=-Ldir to specify its location.])] | |
104 | ) | |
105 | ||
106 | # Check libpopt | |
107 | AC_CHECK_LIB([popt], [poptGetContext], [], | |
108 | [AC_MSG_ERROR([Cannot find libpopt. Use [LDFLAGS]=-Ldir to specify its location.])] | |
109 | ) | |
110 | ||
6e59ae26 | 111 | # URCU library version needed or newer |
08a2aa63 | 112 | liburcu_version=">= 0.6.7" |
6e59ae26 | 113 | |
3ffccaed | 114 | # Check liburcu needed function calls |
fac6795d | 115 | AC_CHECK_DECL([cds_list_add], [], |
8e12081b | 116 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/list.h>]] |
fac6795d | 117 | ) |
099e26bd | 118 | AC_CHECK_DECL([cds_wfq_init], [], |
8e12081b DG |
119 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]] |
120 | ) | |
487cf67c DG |
121 | AC_CHECK_DECL([cds_wfq_dequeue_blocking], [], |
122 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/wfqueue.h>]] | |
123 | ) | |
8e12081b DG |
124 | AC_CHECK_DECL([futex_async], [], |
125 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu/futex.h>]] | |
099e26bd | 126 | ) |
3ffccaed DG |
127 | AC_CHECK_DECL([rcu_thread_offline], [], |
128 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]] | |
129 | ) | |
130 | AC_CHECK_DECL([rcu_thread_online], [], | |
131 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]] | |
132 | ) | |
6e59ae26 DG |
133 | AC_CHECK_DECL([caa_likely], [], |
134 | [AC_MSG_ERROR([liburcu $liburcu_version or newer is needed])], [[#include <urcu.h>]] | |
135 | ) | |
136 | ||
74d0b642 MD |
137 | # Check liblttng-ust-ctl library |
138 | AC_ARG_ENABLE(lttng-ust, | |
6299f964 | 139 | AS_HELP_STRING([--disable-lttng-ust],[build without LTTng-UST (Userspace Tracing) support]), |
0e636c80 | 140 | lttng_ust_support=$enableval, lttng_ust_support=yes) |
74d0b642 | 141 | |
6299f964 | 142 | AS_IF([test "x$lttng_ust_support" = "xyes"], [ |
2cfc9655 | 143 | AC_CHECK_LIB([lttng-ust-ctl], [ustctl_set_filter], |
082d0908 CB |
144 | [ |
145 | AC_DEFINE([HAVE_LIBLTTNG_UST_CTL], [1], [has LTTng-UST control support]) | |
146 | lttng_ust_ctl_found=yes | |
147 | ], | |
148 | [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.])], | |
b827d67e | 149 | [-lurcu-common -lurcu-bp -lurcu-cds -lrt] |
74d0b642 | 150 | ) |
6299f964 | 151 | ]) |
082d0908 | 152 | AM_CONDITIONAL([HAVE_LIBLTTNG_UST_CTL], [test "x$lttng_ust_ctl_found" = xyes]) |
f6a9efaa DG |
153 | AC_CHECK_FUNCS([sched_getcpu sysconf]) |
154 | ||
6816a5cb MD |
155 | # check for dlopen |
156 | AC_CHECK_LIB([dl], [dlopen], | |
157 | [ | |
158 | have_libdl=yes | |
159 | ], | |
160 | [ | |
161 | #libdl not found, check for dlopen in libc. | |
162 | AC_CHECK_LIB([c], [dlopen], | |
163 | [ | |
164 | have_libc_dl=yes | |
165 | ], | |
166 | [ | |
167 | AC_MSG_ERROR([Cannot find dlopen in libdl nor libc. Use [LDFLAGS]=-Ldir to specify their location.]) | |
168 | ]) | |
169 | ]) | |
170 | AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBDL], [test "x$have_libdl" = "xyes"]) | |
171 | AM_CONDITIONAL([LTTNG_TOOLS_BUILD_WITH_LIBC_DL], [test "x$have_libc_dl" = "xyes"]) | |
172 | ||
53a80697 MD |
173 | # Check for fmemopen |
174 | AC_CHECK_LIB([c], [fmemopen], | |
175 | [ | |
176 | AC_DEFINE_UNQUOTED([LTTNG_HAVE_FMEMOPEN], 1, [Has fmemopen support.]) | |
177 | ] | |
178 | ) | |
179 | ||
180 | # Check for open_memstream | |
181 | AC_CHECK_LIB([c], [open_memstream], | |
182 | [ | |
183 | AC_DEFINE_UNQUOTED([LTTNG_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.]) | |
184 | ] | |
185 | ) | |
186 | ||
36907cb5 DS |
187 | # For Python |
188 | # SWIG version needed or newer: | |
189 | swig_version=2.0.0 | |
190 | ||
191 | AC_ARG_ENABLE([python-bindings], | |
192 | [AC_HELP_STRING([--enable-python-bindings], | |
193 | [compile Python bindings])], | |
194 | [enable_python=yes], [enable_python=no]) | |
195 | ||
196 | AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes]) | |
197 | ||
198 | if test "x${enable_python:-yes}" = xyes; then | |
199 | AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ]) | |
200 | AM_PATH_PYTHON | |
201 | ||
202 | AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config]) | |
203 | AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config]) | |
204 | AS_IF([test -z "$PYTHON_INCLUDE"], [ | |
205 | AS_IF([test -z "$PYTHON_CONFIG"], [ | |
206 | AC_PATH_PROGS([PYTHON_CONFIG], | |
207 | [python$PYTHON_VERSION-config python-config], | |
208 | [no], | |
209 | [`dirname $PYTHON`]) | |
210 | AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])]) | |
211 | ]) | |
212 | AC_MSG_CHECKING([python include flags]) | |
213 | PYTHON_INCLUDE=`$PYTHON_CONFIG --includes` | |
214 | AC_MSG_RESULT([$PYTHON_INCLUDE]) | |
215 | ]) | |
216 | ||
217 | else | |
218 | AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl | |
219 | [if you want Python bindings.]) | |
220 | ||
221 | fi | |
222 | ||
55bed213 AM |
223 | # Option to only build the consumer daemon and its libraries |
224 | AC_ARG_WITH([consumerd-only], | |
225 | AS_HELP_STRING([--with-consumerd-only],[Only build the consumer daemon [default=no]]), | |
226 | [consumerd_only=$withval], | |
227 | [consumerd_only=no]) | |
228 | AM_CONDITIONAL([BUILD_CONSUMERD_ONLY], [test "x$consumerd_only" = "xyes"]) | |
229 | ||
3ffccaed | 230 | # Epoll check. If not present, the build will fallback on poll() API |
71615260 DG |
231 | AX_HAVE_EPOLL( |
232 | [AX_CONFIG_FEATURE_ENABLE(epoll)], | |
233 | [AX_CONFIG_FEATURE_DISABLE(epoll)] | |
234 | ) | |
71615260 DG |
235 | AX_CONFIG_FEATURE( |
236 | [epoll], [This platform supports epoll(7)], | |
237 | [HAVE_EPOLL], [This platform supports epoll(7).], | |
238 | [enable_epoll="yes"], [enable_epoll="no"] | |
239 | ) | |
71615260 DG |
240 | AM_CONDITIONAL([COMPAT_EPOLL], [ test "$enable_epoll" = "yes" ]) |
241 | ||
c72b7d96 | 242 | AC_SYS_LARGEFILE |
fac6795d | 243 | AC_PROG_CC |
3889a2d6 | 244 | LT_INIT |
953192ba MD |
245 | AC_PROG_YACC |
246 | AC_PROG_LEX | |
247 | ||
248 | AC_DEFUN([AC_PROG_BISON], [AC_CHECK_PROGS(BISON, bison, bison)]) | |
fac6795d | 249 | |
6e2d116c DG |
250 | CFLAGS="-Wall $CFLAGS -g -fno-strict-aliasing" |
251 | ||
c72b7d96 | 252 | DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/src -I\$(top_builddir)/include -include config.h" |
6e2d116c DG |
253 | |
254 | lttngincludedir="${includedir}/lttng" | |
255 | ||
256 | AC_SUBST(lttngincludedir) | |
257 | AC_SUBST(DEFAULT_INCLUDES) | |
258 | ||
386418ba MD |
259 | lttnglibexecdir="${libdir}/lttng/libexec" |
260 | AC_SUBST(lttnglibexecdir) | |
261 | ||
fac6795d DG |
262 | AC_CONFIG_FILES([ |
263 | Makefile | |
10a8a223 | 264 | doc/Makefile |
6991b181 | 265 | doc/man/Makefile |
fac6795d | 266 | include/Makefile |
36907cb5 DS |
267 | extras/Makefile |
268 | extras/bindings/Makefile | |
269 | extras/bindings/swig/Makefile | |
270 | extras/bindings/swig/python/Makefile | |
10a8a223 DG |
271 | src/Makefile |
272 | src/common/Makefile | |
273 | src/common/kernel-ctl/Makefile | |
274 | src/common/kernel-consumer/Makefile | |
275 | src/common/ust-consumer/Makefile | |
276 | src/common/hashtable/Makefile | |
277 | src/common/sessiond-comm/Makefile | |
d31efcff | 278 | src/common/compat/Makefile |
00e2e675 | 279 | src/common/relayd/Makefile |
6242251b | 280 | src/common/testpoint/Makefile |
10a8a223 DG |
281 | src/lib/Makefile |
282 | src/lib/lttng-ctl/Makefile | |
d00c599e | 283 | src/lib/lttng-ctl/filter/Makefile |
10a8a223 DG |
284 | src/bin/Makefile |
285 | src/bin/lttng-consumerd/Makefile | |
286 | src/bin/lttng-sessiond/Makefile | |
b8aa1682 | 287 | src/bin/lttng-relayd/Makefile |
10a8a223 | 288 | src/bin/lttng/Makefile |
fac6795d | 289 | tests/Makefile |
355f483d DG |
290 | tests/kernel/Makefile |
291 | tests/tools/Makefile | |
f4e40ab6 | 292 | tests/tools/streaming/Makefile |
2b1745e1 | 293 | tests/tools/filtering/Makefile |
55009a22 | 294 | tests/tools/health/Makefile |
355f483d | 295 | tests/ust/Makefile |
355f483d | 296 | tests/ust/nprocesses/Makefile |
e72d66a6 | 297 | tests/ust/high-throughput/Makefile |
4d5b973e | 298 | tests/ust/low-throughput/Makefile |
b19155c0 | 299 | tests/ust/before-after/Makefile |
00eb21af | 300 | tests/ust/multi-session/Makefile |
fac6795d DG |
301 | ]) |
302 | ||
303 | AC_OUTPUT | |
6299f964 | 304 | |
994dd8a4 | 305 | # |
6299f964 | 306 | # Mini-report on what will be built |
994dd8a4 AM |
307 | # |
308 | AS_ECHO() | |
309 | ||
0e4cbe7e DG |
310 | AS_ECHO("Version name: $version_name") |
311 | AS_ECHO("$version_description") | |
312 | ||
313 | AS_ECHO() | |
314 | ||
994dd8a4 | 315 | # Target architecture we're building for |
2d90c6c8 | 316 | target_arch=$host_cpu |
994dd8a4 AM |
317 | [ |
318 | for f in $CFLAGS; do | |
319 | if test $f = "-m32"; then | |
320 | target_arch="32-bit" | |
321 | elif test $f = "-m64"; then | |
322 | target_arch="64-bit" | |
323 | fi | |
324 | done | |
325 | ] | |
326 | AS_ECHO_N("Target architecture: ") | |
327 | AS_ECHO($target_arch) | |
328 | ||
329 | # LTTng-UST enabled/disabled | |
6299f964 | 330 | AS_ECHO_N("Lttng-UST support: ") |
994dd8a4 AM |
331 | AS_IF([test "x$lttng_ust_support" = "xyes"],[ |
332 | AS_ECHO("Enabled") | |
333 | ],[ | |
334 | AS_ECHO("Disabled") | |
335 | ]) | |
55bed213 | 336 | |
36907cb5 DS |
337 | #Python binding enabled/disabled |
338 | AS_ECHO_N("Python binding: ") | |
339 | AS_IF([test "x${enable_python:-yes}" = xyes], [ | |
340 | AS_ECHO("Enabled") | |
341 | ],[ | |
342 | AS_ECHO("Disabled") | |
343 | ]) | |
344 | ||
994dd8a4 AM |
345 | # Do we build only the consumerd, or everything |
346 | AS_IF([test "x$consumerd_only" = "xyes"],[ | |
347 | AS_ECHO("Only the consumerd daemon will be built.") | |
348 | ],[ | |
349 | AS_ECHO("All binaries will be built.") | |
350 | ]) | |
351 | ||
5fb528f1 AM |
352 | # Print the bindir and libdir this `make install' will install into. |
353 | AS_ECHO() | |
354 | AS_ECHO_N("Binaries will be installed in: ") | |
355 | AS_ECHO("`eval eval echo $bindir`") | |
356 | AS_ECHO_N("Libraries will be installed in: ") | |
357 | AS_ECHO("`eval eval echo $libdir`") | |
358 | ||
994dd8a4 AM |
359 | # If we build the sessiond, print the paths it will use |
360 | AS_IF([test "x$consumerd_only" = "xno"],[ | |
361 | AS_ECHO() | |
362 | AS_ECHO("The sessiond daemon will look in the following directories: ") | |
363 | AS_ECHO_N("32-bit consumerd executable at: ") | |
364 | AS_IF([test "$CONSUMERD32_BIN" = ""],[ | |
386418ba | 365 | AS_ECHO_N("`eval eval echo $lttnglibexecdir`") |
994dd8a4 AM |
366 | AS_ECHO("/lttng-consumerd") |
367 | ],[ | |
368 | AS_ECHO("$CONSUMERD32_BIN") | |
369 | ]) | |
370 | ||
371 | AS_ECHO_N("32-bit consumer libraries in: ") | |
372 | AS_IF([test "$CONSUMERD32_LIBDIR" = ""],[ | |
373 | AS_ECHO("`eval eval echo $libdir`") | |
374 | ],[ | |
375 | AS_ECHO("$CONSUMERD32_LIBDIR") | |
376 | ]) | |
377 | ||
378 | AS_ECHO_N("64-bit consumerd executable at: ") | |
379 | AS_IF([test "$CONSUMERD64_BIN" = ""],[ | |
386418ba | 380 | AS_ECHO_N("`eval eval echo $lttnglibexecdir`") |
994dd8a4 AM |
381 | AS_ECHO("/lttng-consumerd") |
382 | ],[ | |
383 | AS_ECHO("$CONSUMERD64_BIN") | |
384 | ]) | |
385 | ||
386 | AS_ECHO_N("64-bit consumer libraries in: ") | |
387 | AS_IF([test "$CONSUMERD64_LIBDIR" = ""],[ | |
388 | AS_ECHO("`eval eval echo $libdir`") | |
389 | ],[ | |
390 | AS_ECHO("$CONSUMERD64_LIBDIR") | |
391 | ]) | |
392 | ]) | |
6299f964 | 393 | |
994dd8a4 | 394 | AS_ECHO() |
6299f964 | 395 |