Cleanup: popt library detection
[babeltrace.git] / configure.ac
CommitLineData
9d594903 1AC_PREREQ([2.50])
a2edfc7d
PP
2m4_define([bt_version_major], [2])
3m4_define([bt_version_minor], [0])
4m4_define([bt_version_patch], [0])
48d1e6e0 5m4_define([bt_version_extra], [-pre1])
a2edfc7d
PP
6m4_define([bt_version], bt_version_major[.]bt_version_minor[.]bt_version_patch[]bt_version_extra)
7AC_INIT([babeltrace],bt_version,[jeremie dot galarneau at efficios dot com])
3fbccce7
MD
8
9# Following the numbering scheme proposed by libtool for the library version
10# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
a2edfc7d 11AC_SUBST([BABELTRACE_LIBRARY_VERSION], bt_version_major[:]bt_version_minor[:]bt_version_patch)
3fbccce7 12
05c03100 13AC_CONFIG_HEADERS([include/config.h])
ac65e355 14AC_CONFIG_AUX_DIR([config])
80e2fb15
MJ
15AC_CONFIG_MACRO_DIR([m4])
16
a2edfc7d
PP
17AC_DEFINE([BT_VERSION_MAJOR], bt_version_major, [Babeltrace library major version])
18AC_DEFINE([BT_VERSION_MINOR], bt_version_minor, [Babeltrace library minor version])
19AC_DEFINE([BT_VERSION_PATCH], bt_version_patch, [Babeltrace library patch version])
20AC_DEFINE([BT_VERSION_EXTRA], ["]bt_version_extra["], [Babeltrace library extra version])
21
ac65e355
MD
22AC_CANONICAL_TARGET
23AC_CANONICAL_HOST
80e2fb15 24
05c03100 25AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip tar-ustar nostdinc])
99e3ba41 26AM_MAINTAINER_MODE([enable])
ac65e355 27
80e2fb15
MJ
28# Enable silent rules if available (Introduced in AM 1.11)
29m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
0671bd13 30
3d5e9596
MJ
31AC_REQUIRE_AUX_FILE([tap-driver.sh])
32
80e2fb15
MJ
33# Checks for C compiler
34AC_USE_SYSTEM_EXTENSIONS
217108a9 35AC_SYS_LARGEFILE
80e2fb15
MJ
36AC_PROG_CC
37AC_PROG_CC_STDC
217108a9 38
ac65e355 39# Checks for programs.
ac65e355 40AC_PROG_MAKE_SET
c5410abe 41LT_INIT(win32-dll)
8b9d5b5e
MD
42AC_PROG_YACC
43AC_PROG_LEX
80e2fb15
MJ
44AC_PROG_MKDIR_P
45AC_PROG_LN_S
ac65e355 46
ec8add54
MJ
47AX_C___ATTRIBUTE__
48AS_IF([test "x$ax_cv___attribute__" = "xyes"],
49 [:],
50 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
51
a2bc83d4 52AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
a2bc83d4 53
f0d8d709
AM
54# Check linker option
55AX_APPEND_LINK_FLAGS([-Wl,--no-as-needed], [LD_NO_AS_NEEDED])
56AC_SUBST([LD_NO_AS_NEEDED])
57
f847f3ae
MJ
58AC_HEADER_STDBOOL
59AC_CHECK_HEADERS([ \
60 fcntl.h \
61 float.h \
e1f4c4f7 62 ftw.h \
f847f3ae
MJ
63 libintl.h \
64 limits.h \
65 malloc.h \
66 netdb.h \
67 netinet/in.h \
68 stddef.h \
69 sys/socket.h \
70])
80e2fb15 71
dc3fffef 72if test ! -f "$srcdir/plugins/ctf/common/metadata/parser.h"; then
e3e6755d 73 if test x"$(basename "$YACC")" != "xbison -y"; then
331d78f5
YB
74 AC_MSG_ERROR([[bison not found and is required when building from git.
75 Please install bison]])
76 fi
2b4887a2
JR
77 AC_PATH_PROG([BISON],[bison])
78 AX_PROG_BISON_VERSION([2.4], [],[
79 AC_MSG_ERROR([[Bison >= 2.4 is required when building from git]])
80 ])
331d78f5
YB
81fi
82
dc3fffef 83if test ! -f "$srcdir/plugins/ctf/common/metadata/lexer.c"; then
331d78f5
YB
84 if test x"$LEX" != "xflex"; then
85 AC_MSG_ERROR([[flex not found and is required when building from git.
86 Please install flex]])
87 fi
33bdeb6a
JR
88 AC_PATH_PROG([FLEX],[flex])
89 AX_PROG_FLEX_VERSION([2.5.35], [],[
90 AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]])
91 ])
331d78f5
YB
92fi
93
e5f5317f 94
f20cba2d 95AM_PATH_GLIB_2_0(2.22.0, ,AC_MSG_ERROR([glib is required in order to compile BabelTrace - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule-no-export)
ac65e355 96
39fa4402
MJ
97# Check what libraries are required on this platform to link sockets programs.
98AX_LIB_SOCKET_NSL
99
ac65e355
MD
100# Checks for typedefs, structures, and compiler characteristics.
101AC_C_INLINE
102AC_TYPE_PID_T
103AC_TYPE_SIZE_T
31510f02
JR
104AC_TYPE_INT16_T
105AC_TYPE_INT32_T
106AC_TYPE_INT64_T
107AC_TYPE_INT8_T
108AC_TYPE_OFF_T
109AC_TYPE_SSIZE_T
110AC_TYPE_UINT16_T
111AC_TYPE_UINT32_T
112AC_TYPE_UINT64_T
113AC_TYPE_UINT8_T
ac65e355
MD
114
115# Checks for library functions.
f847f3ae
MJ
116AC_FUNC_ALLOCA
117AC_FUNC_FORK
f847f3ae 118AC_FUNC_MKTIME
ac65e355 119AC_FUNC_MMAP
f847f3ae 120AC_FUNC_STRERROR_R
2f8c0e47 121AC_CHECK_FUNCS([ \
f847f3ae 122 atexit \
f847f3ae
MJ
123 dup2 \
124 ftruncate \
125 gethostbyname \
126 gethostname \
127 gettimeofday \
128 localtime_r \
129 memchr \
130 memset \
131 mkdir \
132 mkdtemp \
133 munmap \
134 rmdir \
135 setenv \
136 socket \
137 strchr \
138 strdup \
139 strerror \
140 strndup \
141 strnlen \
142 strrchr \
143 strtoul \
144 strtoull \
145 tzset \
146 uname \
2f8c0e47 147])
ac65e355 148
dc4cb410
MJ
149# AC_FUNC_MALLOC causes problems when cross-compiling.
150#AC_FUNC_MALLOC
151#AC_FUNC_REALLOC
152
58819898 153MINGW32=no
2748fb3b 154DEFAULT_ENABLE_DEBUG_INFO=yes
c5410abe 155LT_NO_UNDEFINED=""
a3d28380
MJ
156AS_CASE([$host_os],
157 [solaris*|darwin*],
158 [
2748fb3b 159 DEFAULT_ENABLE_DEBUG_INFO=no
a3d28380 160 ],
579a4b9d
MJ
161 [cygwin*],
162 [
163 DEFAULT_ENABLE_DEBUG_INFO=no
164 LT_NO_UNDEFINED="-no-undefined"
165 ],
a3d28380
MJ
166 [mingw*],
167 [
168 MINGW32=yes
251b4638 169 DEFAULT_ENABLE_DEBUG_INFO=no
c5410abe 170 LT_NO_UNDEFINED="-no-undefined"
a3d28380
MJ
171 ]
172)
58819898
JI
173
174AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
c5410abe 175AC_SUBST(LT_NO_UNDEFINED)
58819898 176
4120f662
MJ
177# Check for uuid in system libs
178AC_CHECK_FUNCS([uuid_generate],
a4dfa07b 179[
4120f662
MJ
180 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
181 link_with_libuuid=no
a4dfa07b
MD
182],
183[
2741f55b
SM
184 # First, check the pkg-config module is available, otherwise explicitly check
185 # for libuuid, or uuid support in the C-library.
186 PKG_CHECK_MODULES([UUID], [uuid],
4120f662
MJ
187 [
188 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
189 link_with_libuuid=yes
190 ],
191 [
2741f55b
SM
192 # Check for libuuid
193 AC_CHECK_LIB([uuid], [uuid_generate],
4120f662 194 [
2741f55b
SM
195 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
196 link_with_libuuid=yes
4120f662
MJ
197 ],
198 [
2741f55b
SM
199 # libuuid not found, check for uuid_create in libc.
200 AC_CHECK_LIB([c], [uuid_create],
201 [
202 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
203 link_with_libc_uuid=yes
204 ],
205 [
5fc11b53 206 # for MinGW32 we have our own internal implementation of uuid using Windows functions.
2741f55b
SM
207 if test "x$MINGW32" = xno; then
208 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
209 fi
210 ])
4120f662
MJ
211 ])
212 ])
213])
214
215AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$link_with_libuuid" = "xyes"])
216AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$link_with_libc_uuid" = "xyes"])
fd55fc57 217
f8370579
MD
218# Check for fmemopen
219AC_CHECK_LIB([c], [fmemopen],
220[
221 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
222]
223)
224
225# Check for open_memstream
226AC_CHECK_LIB([c], [open_memstream],
227[
228 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
229]
230)
231
a323afb2
JG
232# Check for posix_fallocate
233AC_CHECK_LIB([c], [posix_fallocate],
234[
235 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_POSIX_FALLOCATE], 1, [Has posix_fallocate support.])
236]
237)
238
4817cd5b
MJ
239# Check libpopt
240PKG_CHECK_MODULES([POPT], [popt],
241 [
242 dnl PKG_CHECK_MODULES defines POPT_LIBS
243 ],
244 [
245 AC_MSG_WARN([pkg-config was unable to find a valid .pc for libpopt. Set PKG_CONFIG_PATH to specify the pkgconfig configuration file location])
246 AC_MSG_WARN([Finding libpopt without pkg-config.])
247 AC_CHECK_LIB([popt],
248 [poptGetContext],
249 [POPT_LIBS="-lpopt"],
250 [
251 AC_MSG_FAILURE([Cannot find libpopt. Either set PKG_CONFIG_PATH to the configuration file location or use LDFLAGS=-Ldir to specify the library location])
252 ]
253 )
254 ]
0f536a74 255)
4817cd5b 256AC_SUBST(POPT_LIBS)
0f536a74 257
a094f13b
PP
258# Plugins
259AC_ARG_VAR([PLUGINSDIR], [built-in plugins install directory [LIBDIR/babeltrace/plugins]])
260AS_IF([test "x$PLUGINSDIR" = x], [PLUGINSDIR='$(libdir)/babeltrace/plugins'])
261
24a3136a
DS
262# For Python
263# SWIG version needed or newer:
264swig_version=2.0.0
265
94a6cea3
JG
266AC_ARG_ENABLE([python-bindings],
267 [AC_HELP_STRING([--enable-python-bindings],
268 [generate Python bindings])],
fb4be38a 269 [enable_python_bindings=$enableval], [enable_python_bindings=no])
24a3136a 270
55bb57e0 271AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python_bindings:-yes}" = xyes])
24a3136a 272
55bb57e0
PP
273AC_ARG_ENABLE(
274 [python-plugins],
275 [AC_HELP_STRING(
276 [--enable-python-plugins],
277 [add support for the Babeltrace library and converter to load Python plugins])
278 ],
fb4be38a 279 [enable_python_plugins=$enableval],
55bb57e0
PP
280 [enable_python_plugins=no]
281)
9cf643d1 282
55bb57e0
PP
283if test "x${enable_python_bindings:-yes}" = xyes; then
284 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
285else
286 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
287[if you want Python bindings.])
4f5f37d9
PP
288fi
289
55bb57e0 290if test "x$enable_python_bindings" != xno || test "x$enable_python_plugins" != xno; then
c3ddb532 291 AM_PATH_PYTHON([3.0], , [AC_MSG_ERROR(Python 3 is not available or is not the default Python interpreter on your system. See the README file to learn how to override your distribution's default Python interpreter.)])
24a3136a 292
1b39e2de
JG
293 AM_PATH_PYTHON_MODULES([PYTHON])
294 # pythondir is the path where extra modules are to be installed
295 pythondir=$PYTHON_PREFIX/$PYTHON_MODULES_PATH
296 # pyexecdir is the path that contains shared objects used by the extra modules
297 pyexecdir=$PYTHON_EXEC_PREFIX/$PYTHON_MODULES_PATH
55bb57e0
PP
298 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for Python, bypassing python-config])
299 AC_ARG_VAR([PYTHON_LIBS], [Library flags for Python, bypassing python-config])
24a3136a
DS
300 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
301 AS_IF([test -z "$PYTHON_INCLUDE"], [
302 AS_IF([test -z "$PYTHON_CONFIG"], [
303 AC_PATH_PROGS([PYTHON_CONFIG],
304 [python$PYTHON_VERSION-config python-config],
305 [no],
306 [`dirname $PYTHON`])
94a6cea3 307 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
24a3136a 308 ])
55bb57e0 309 AC_MSG_CHECKING([Python include flags])
24a3136a
DS
310 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
311 AC_MSG_RESULT([$PYTHON_INCLUDE])
312 ])
55bb57e0
PP
313 AS_IF([test -z "$PYTHON_LIBS"], [
314 AS_IF([test -z "$PYTHON_CONFIG"], [
315 AC_PATH_PROGS([PYTHON_CONFIG],
316 [python$PYTHON_VERSION-config python-config],
317 [no],
318 [`dirname $PYTHON`])
319 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
320 ])
321 AC_MSG_CHECKING([Python library flags])
322 PYTHON_LIBS=`$PYTHON_CONFIG --libs`
323 AC_MSG_RESULT([$PYTHON_LIBS])
324 ])
325fi
326
c3ddb532
PP
327AS_IF([test "x$BUILT_IN_PLUGINS" = ""])
328
55bb57e0
PP
329AM_CONDITIONAL([WITH_PYTHON_PLUGINS], [test "x$enable_python_plugins" != xno])
330AS_IF(
331 [test "x$enable_python_plugins" != xno],
332 AC_DEFINE_UNQUOTED([WITH_PYTHON_PLUGINS], [1], [Python plugin support.])
333)
334
335AC_ARG_ENABLE([python-bindings-doc],
336 [AC_HELP_STRING([--enable-python-bindings-doc],
337 [generate Python bindings documentation])],
fb4be38a 338 [enable_python_bindings_doc=$enableval], [enable_python_bindings_doc=no])
55bb57e0
PP
339
340AM_CONDITIONAL([BUILD_PYTHON_BINDINGS_DOC], [test "x${enable_python_bindings_doc:-yes}" = xyes])
94a6cea3 341
55bb57e0
PP
342AC_ARG_ENABLE([python-bindings-tests],
343 [AC_HELP_STRING([--enable-python-bindings-tests],
344 [test Python bindings])],
fb4be38a 345 [enable_python_bindings_tests=$enableval], [enable_python_bindings_tests=no])
55bb57e0
PP
346
347AM_CONDITIONAL([ENABLE_PYTHON_BINDINGS_TESTS], [test "x${enable_python_bindings_tests:-yes}" = xyes])
348
349if test "x${enable_python_bindings:-no}" = xno; then
350 if test "x${enable_python_bindings_doc:-yes}" = xyes; then
351 AC_MSG_ERROR([--enable-python-bindings-doc was specified without --enable-python-bindings])
352 fi
353
354 if test "x${enable_python_bindings_tests:-yes}" = xyes; then
355 AC_MSG_ERROR([--enable-python-bindings-tests was specified without --enable-python-bindings])
356 fi
24a3136a
DS
357fi
358
4f5f37d9 359if test "x${enable_python_bindings_doc:-yes}" = xyes; then
17137804
PP
360 AM_CHECK_PYTHON_SPHINX([PYTHON])
361 AS_IF([test "x$PYTHON_SPHINX_EXISTS" = xno],
362 AC_MSG_ERROR([The Sphinx package for Python 3 is required to build Python bindings documentation])
4f5f37d9
PP
363 )
364fi
365
9cf643d1
PP
366if test "x${enable_python_bindings_tests:-yes}" = xyes; then
367 AM_CHECK_PYTHON_TAPPY([PYTHON])
368 AS_IF([test "x$PYTHON_TAPPY_EXISTS" = xno],
369 AC_MSG_ERROR([You need the tappy Python project to test the Python bindings (see <https://github.com/python-tap/tappy>)])
370 )
371fi
372
2748fb3b
AB
373# Set default enable state for debug info.
374# The _enable_debug_info variable is prepended with an underscore to
375# avoid clashing with the one generated by AC_ARG_ENABLE.
376AS_IF([test "x$DEFAULT_ENABLE_DEBUG_INFO" = xyes], [_enable_debug_info=yes], [_enable_debug_info=no])
4fe06062 377
2748fb3b 378# Optional debug info feature
4fe06062
MD
379# Do _not_ indent the help string below (appears in the configure --help
380# output).
381AC_ARG_ENABLE([debug-info],
2748fb3b
AB
382[AC_HELP_STRING([--enable-debug-info], [enable the debug info feature (default on Linux)])]
383[AC_HELP_STRING([--disable-debug-info], [disable the debug info feature (default on OS X and Solaris)])],
384 [AS_IF([test "x$enableval" = xyes], [_enable_debug_info=yes], [_enable_debug_info=no])], [])
c40a57e5 385
2748fb3b 386AM_CONDITIONAL([ENABLE_DEBUG_INFO], [test "x$_enable_debug_info" = xyes])
7433a3a4 387
2748fb3b 388AS_IF([test "x$_enable_debug_info" = xyes], [
ce406405
PP
389 # Check if libelf and libdw are present
390 AC_CHECK_LIB([elf], [elf_version], [], [AC_MSG_ERROR(Missing libelf (from elfutils >= 0.154) which is required by debug info. You can disable this feature using --disable-debug-info.)])
391 AC_CHECK_LIB([dw], [dwarf_begin], [], [AC_MSG_ERROR(Missing libdw (from elfutils >= 0.154) which is required by debug info. You can disable this feature using --disable-debug-info.)])
392 BT_LIB_ELFUTILS([0], [154], [:], [AC_MSG_ERROR(elfutils >= 0.154 is required to use the debug info feature. You can disable this feature using --disable-debug-info.)])
393 AC_DEFINE([ENABLE_DEBUG_INFO], [1], [Define to 1 if you enable the 'debug info' feature])
c40a57e5
AB
394], [])
395
cba174d5
JG
396AC_ARG_VAR([BUILT_IN_PLUGINS], [Statically-link in-tree plug-ins into the babeltrace binary])
397AS_IF([test "x$BUILT_IN_PLUGINS" != x], [
398# Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
399 AS_IF([test "x$enable_static" != "xyes"], [AC_MSG_ERROR(--enable-static must be used to bundle plug-ins in the babeltrace executable)])
400 AS_IF([test "x$enable_shared" = "xyes"], [AC_MSG_ERROR(--disable-shared must be used to bundle plug-ins in the babeltrace executable)])
401 built_in_plugins=yes
402 AC_DEFINE([BT_BUILT_IN_PLUGINS], [1], [Define to 1 to register plug-in attributes in static executable sections])
403])
404AM_CONDITIONAL([BUILT_IN_PLUGINS], [test "x$built_in_plugins" = "xyes"])
405
c3ddb532 406AC_ARG_VAR([BUILT_IN_PYTHON_PLUGIN_SUPPORT], [Statically-link Python plugin support into the babeltrace library])
6fbd4105
PP
407AS_IF([test "x$BUILT_IN_PYTHON_PLUGIN_SUPPORT" != x], [
408# Built-in plug-ins are only available when the --disable-shared --enable-static options are used.
409 AS_IF([test "x$enable_static" != "xyes"], [AC_MSG_ERROR(--enable-static must be used to bundle Python plugin support in the babeltrace executable)])
410 AS_IF([test "x$enable_shared" = "xyes"], [AC_MSG_ERROR(--disable-shared must be used to bundle Python plugin support in the babeltrace executable)])
c3ddb532
PP
411 AS_IF([test "x$enable_python_plugins" = "xno"], [
412 AC_MSG_ERROR([You can't use BUILT_IN_PYTHON_PLUGIN_SUPPORT=1 without --enable-python-plugins.])
413 ])
6fbd4105
PP
414 built_in_python_plugin_support=yes
415 AC_DEFINE([BT_BUILT_IN_PYTHON_PLUGIN_SUPPORT], [1], [Define to 1 to register plug-in attributes in static executable sections])
416])
417AM_CONDITIONAL([BUILT_IN_PYTHON_PLUGIN_SUPPORT], [test "x$built_in_python_plugin_support" = "xyes"])
418
f20cba2d 419PKG_CHECK_MODULES(GMODULE, [gmodule-no-export-2.0 >= 2.0.0])
ac65e355 420
beb0fb75
PP
421# Logging
422AC_ARG_VAR([BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level for Babeltrace program, library, and plugins (VERBOSE, DEBUG, INFO, WARN, ERROR (default), FATAL, or NONE)])
4b328724 423AS_IF([test "x$BABELTRACE_MINIMAL_LOG_LEVEL" = "x"], [BABELTRACE_MINIMAL_LOG_LEVEL=VERBOSE])
beb0fb75
PP
424AS_IF([test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "VERBOSE" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "DEBUG" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "INFO" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "WARN" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "ERROR" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "FATAL" && test "$BABELTRACE_MINIMAL_LOG_LEVEL" != "NONE"], [
425 AC_MSG_ERROR([Invalid BABELTRACE_MINIMAL_LOG_LEVEL value ($BABELTRACE_MINIMAL_LOG_LEVEL): use VERBOSE, DEBUG, INFO, WARN, ERROR, FATAL, or NONE.])
426])
427AC_DEFINE_UNQUOTED([BT_LOG_LEVEL], [BT_LOG_$BABELTRACE_MINIMAL_LOG_LEVEL], [Minimal log level])
428
05c03100
MJ
429AM_CFLAGS="-Wall -Wformat $PTHREAD_CFLAGS $GLIB_CFLAGS"
430AC_SUBST(AM_CFLAGS)
ac65e355 431
05c03100
MJ
432AM_CPPFLAGS="-I\$(top_builddir)/include -I\$(top_srcdir)/include -include config.h"
433AC_SUBST(AM_CPPFLAGS)
434
435LIBS="$GLIB_LIBS"
38424656 436
e4d70dc3 437babeltraceincludedir="${includedir}/babeltrace"
70bd0a12
JD
438AC_SUBST(babeltraceincludedir)
439
273b65be
JG
440babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer"
441AC_SUBST(babeltracectfwriterincludedir)
442
dc3fffef
PP
443babeltracectfincludedir="${includedir}/babeltrace/ctf"
444AC_SUBST(babeltracectfincludedir)
445
adc315b8
JG
446babeltracectfirincludedir="${includedir}/babeltrace/ctf-ir"
447AC_SUBST(babeltracectfirincludedir)
448
6ee873c6
JG
449babeltracepluginincludedir="${includedir}/babeltrace/plugin"
450AC_SUBST(babeltracepluginincludedir)
451
b2e0c907
PP
452babeltracegraphincludedir="${includedir}/babeltrace/graph"
453AC_SUBST(babeltracegraphincludedir)
592ddb00 454
899a1d74 455program_transform_name="s&babeltrace\.bin&babeltrace&;s&babeltrace-log\.bin&babeltrace-log&;$program_transform_name"
33b34c43 456AC_SUBST(program_transform_name)
591999ca 457
d1dab1d2
PP
458# check for Doxygen
459AC_ARG_ENABLE(
460 [api-doc],
461 [AC_HELP_STRING(
462 [--enable-api-doc],
463 [generate and install HTML API documentation]
464 )],
465 [enable_api_doc=$enableval],
466 [enable_api_doc=no]
467)
468AM_CONDITIONAL([ENABLE_API_DOC], [test "x$enable_api_doc" = "xyes"])
469
470AS_IF([test "x$enable_api_doc" = "xyes"], [
471 DX_DOXYGEN_FEATURE(ON)
472 DX_DOT_FEATURE(OFF)
473 DX_HTML_FEATURE(ON)
474 DX_CHM_FEATURE(OFF)
475 DX_CHI_FEATURE(OFF)
476 DX_MAN_FEATURE(OFF)
477 DX_RTF_FEATURE(OFF)
478 DX_XML_FEATURE(OFF)
479 DX_PDF_FEATURE(OFF)
480 DX_PS_FEATURE(OFF)
481 DX_INIT_DOXYGEN([Babeltrace], [$(srcdir)/Doxyfile], [output])
482])
483
45ff8fe4
MD
484 #TODO: removed, work in progress
485 #bindings/python/Makefile
486 #bindings/python/babeltrace/Makefile
487 #bindings/python/bt2/Makefile
488 #bindings/python/bt2/__init__.py
ac65e355
MD
489AC_CONFIG_FILES([
490 Makefile
1670bffd 491 common/Makefile
9d1e7de0 492 compat/Makefile
8d77550c 493 cli/Makefile
d2c0553c 494 doc/Makefile
dc3fffef
PP
495 doc/api/Makefile
496 doc/api/Doxyfile
4f5f37d9
PP
497 doc/bindings/Makefile
498 doc/bindings/python/Makefile
e7b68776 499 doc/images/Makefile
1eb0c69c 500 lib/Makefile
74f21e2d 501 lib/prio_heap/Makefile
33b34c43 502 lib/plugin/Makefile
c5504f73
PP
503 lib/graph/Makefile
504 lib/graph/notification/Makefile
dc3fffef
PP
505 lib/ctf-ir/Makefile
506 lib/ctf-writer/Makefile
e92927d1 507 include/Makefile
beb0fb75 508 logging/Makefile
24a3136a 509 bindings/Makefile
ac65e355 510 tests/Makefile
a8101b91
PP
511 tests/cli/Makefile
512 tests/cli/intersection/Makefile
aa968dde 513 tests/lib/Makefile
4c3453a1 514 tests/lib/writer/Makefile
cbb9e0b1 515 tests/lib/test-plugin-plugins/Makefile
1833a3d1
CB
516 tests/utils/Makefile
517 tests/utils/tap/Makefile
9cf643d1
PP
518 tests/bindings/Makefile
519 tests/bindings/python/Makefile
520 tests/bindings/python/bt2/Makefile
8deeabc6 521 tests/plugins/Makefile
6aa249b5
MD
522 extras/Makefile
523 extras/valgrind/Makefile
8ca04164 524 plugins/Makefile
38d02a17 525 plugins/ctf/Makefile
06a626b8
JG
526 plugins/ctf/common/Makefile
527 plugins/ctf/common/btr/Makefile
528 plugins/ctf/common/metadata/Makefile
529 plugins/ctf/common/notif-iter/Makefile
d8866baa
PP
530 plugins/ctf/fs-src/Makefile
531 plugins/ctf/fs-sink/Makefile
f3bc2010
JG
532 plugins/ctf/lttng-live/Makefile
533 plugins/text/Makefile
33ec5dfa 534 plugins/text/dmesg/Makefile
3228cc1d 535 plugins/text/pretty/Makefile
e0dfa761
PP
536 plugins/utils/Makefile
537 plugins/utils/dummy/Makefile
358340ec 538 plugins/utils/counter/Makefile
e0dfa761 539 plugins/utils/trimmer/Makefile
958f7d11 540 plugins/utils/muxer/Makefile
6fbd4105 541 python-plugin-provider/Makefile
91b73004 542 plugins/libctfcopytrace/Makefile
456a4476 543 plugins/lttng-utils/Makefile
d0acc96d 544 babeltrace.pc
e7a7efdb 545 babeltrace-ctf.pc
ac65e355 546])
c41a7502 547
c1870f57 548#AC_CONFIG_FILES([converter/babeltrace], [chmod +x converter/babeltrace])
d6a1ced5 549AC_CONFIG_FILES([tests/lib/test_ctf_writer_complete], [chmod +x tests/lib/test_ctf_writer_complete])
cbb9e0b1 550AC_CONFIG_FILES([tests/lib/test_plugin_complete], [chmod +x tests/lib/test_plugin_complete])
3413e389
SM
551AC_CONFIG_FILES([tests/lib/test_dwarf_complete], [chmod +x tests/lib/test_dwarf_complete])
552AC_CONFIG_FILES([tests/lib/test_bin_info_complete], [chmod +x tests/lib/test_bin_info_complete])
d6a1ced5 553
8deeabc6
PP
554AC_CONFIG_FILES([tests/plugins/test-utils-muxer-complete], [chmod +x tests/plugins/test-utils-muxer-complete])
555
a8101b91 556AC_CONFIG_FILES([tests/cli/test_trace_read], [chmod +x tests/cli/test_trace_read])
5177c351 557AC_CONFIG_FILES([tests/cli/test_trace_copy], [chmod +x tests/cli/test_trace_copy])
2ca134ef 558AC_CONFIG_FILES([tests/cli/test_debug_info], [chmod +x tests/cli/test_debug_info])
e5a54f3f 559AC_CONFIG_FILES([tests/cli/test_trimmer], [chmod +x tests/cli/test_trimmer])
a8101b91 560AC_CONFIG_FILES([tests/cli/intersection/test_intersection], [chmod +x tests/cli/intersection/test_intersection])
73d7fabb 561AC_CONFIG_FILES([tests/cli/test_convert_args], [chmod +x tests/cli/test_convert_args])
a8101b91 562AC_CONFIG_FILES([tests/cli/intersection/bt_python_helper.py])
4c3453a1 563AC_CONFIG_FILES([tests/lib/writer/bt_python_helper.py])
cd36b2f1
MD
564AC_CONFIG_FILES([tests/lib/writer/test_ctf_writer_empty_packet.py])
565AC_CONFIG_FILES([tests/lib/writer/test_ctf_writer_no_packet_context.py])
a8101b91 566AC_CONFIG_FILES([tests/cli/test_packet_seq_num], [chmod +x tests/cli/test_packet_seq_num])
c41a7502 567
9cf643d1
PP
568AS_IF([test "x$enable_python" = "xyes"], [
569 AC_CONFIG_FILES(
570 [tests/bindings/python/bt2/testall.sh],
571 [chmod +x tests/bindings/python/bt2/testall.sh]
572 )
573])
574
ac65e355 575AC_OUTPUT
1a0399f9
MJ
576
577#
578# Mini-report on what will be built.
579#
580
581PPRINT_INIT
582PPRINT_SET_INDENT(1)
583PPRINT_SET_TS(38)
584
585AS_ECHO
586AS_ECHO("${PPRINT_COLOR_BLDBLU}Babeltrace $PACKAGE_VERSION$PPRINT_COLOR_RST")
587AS_ECHO
588
4266f2ad 589PPRINT_SUBTITLE([System])
1a0399f9
MJ
590
591# Target architecture we're building for.
592target_arch=$host_cpu
593[
594for f in $CFLAGS; do
595 if test $f = "-m32"; then
596 target_arch="32-bit"
597 elif test $f = "-m64"; then
598 target_arch="64-bit"
599 fi
600done
601]
beb0fb75 602
4266f2ad 603PPRINT_PROP_STRING([Target architecture], $target_arch)
d1dab1d2 604
4266f2ad
PP
605AS_ECHO
606PPRINT_SUBTITLE([Python 3 language support])
55bb57e0 607test "x$enable_python_bindings" = "xyes" && value=1 || value=0
1a0399f9 608PPRINT_PROP_BOOL([Python bindings], $value)
55bb57e0
PP
609test "x$enable_python_plugins" = "xyes" && value=1 || value=0
610PPRINT_PROP_BOOL([Python plugin support], $value)
4266f2ad
PP
611AS_IF([test "x$enable_python_bindings" = "xyes" || test "x$enable_python_plugins" = "xyes"], [
612 PPRINT_PROP_STRING([Python include paths], [$PYTHON_INCLUDE])
613 PPRINT_PROP_STRING([Python libraries], [$PYTHON_LIBS])
614])
55bb57e0 615
4266f2ad
PP
616AS_ECHO
617PPRINT_SUBTITLE([Plugins])
618PPRINT_PROP_BOOL(['ctf' plugin], 1)
619test "x$_enable_debug_info" = "xyes" && value=1 || value=0
620PPRINT_PROP_BOOL(['lttng-utils' plugin], $value)
621PPRINT_PROP_BOOL(['text' plugin], 1)
622PPRINT_PROP_BOOL(['utils' plugin], 1)
623
624AS_ECHO
625PPRINT_SUBTITLE([Built-in features])
626test "x$built_in_plugins" = "xyes" && value=1 || value=0
627PPRINT_PROP_BOOL([Built-in plugins], $value)
6fbd4105
PP
628test "x$built_in_python_plugin_support" = "xyes" && value=1 || value=0
629PPRINT_PROP_BOOL([Built-in Python plugin support], $value)
630
4266f2ad
PP
631AS_ECHO
632PPRINT_SUBTITLE([Documentation])
633test "x$enable_api_doc" = "xyes" && value=1 || value=0
634PPRINT_PROP_BOOL([HTML API documentation], $value)
635test "x$enable_python_bindings_doc" = "xyes" && value=1 || value=0
636PPRINT_PROP_BOOL([Python bindings documentation], $value)
1a0399f9 637
4266f2ad
PP
638AS_ECHO
639PPRINT_SUBTITLE([Logging])
640PPRINT_PROP_STRING([Minimal log level], $BABELTRACE_MINIMAL_LOG_LEVEL)
641
642AS_ECHO
643PPRINT_SUBTITLE([Testing])
644test "x$enable_python_bindings_tests" = "xyes" && value=1 || value=0
645PPRINT_PROP_BOOL([Python bindings tests], $value)
1a0399f9
MJ
646
647report_bindir="`eval eval echo $bindir`"
648report_libdir="`eval eval echo $libdir`"
4266f2ad 649report_sysconfdif="`eval eval echo $sysconfdir`"
1a0399f9
MJ
650
651# Print the bindir and libdir this `make install' will install into.
652AS_ECHO
653PPRINT_SUBTITLE([Install directories])
654PPRINT_PROP_STRING([Binaries], [$report_bindir])
655PPRINT_PROP_STRING([Libraries], [$report_libdir])
4266f2ad
PP
656PPRINT_PROP_STRING([Plugins], [$report_libdir/babeltrace/plugins])
657PPRINT_PROP_STRING([Configuration], [$report_sysconfdif])
This page took 0.077662 seconds and 4 git commands to generate.