2 # Process this file with autoconf to produce a configure script.
4 AC_INIT([babeltrace],[1.1.1],[mathieu dot desnoyers at efficios dot com])
5 AC_CONFIG_AUX_DIR([config])
8 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
9 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11 AC_CONFIG_MACRO_DIR([m4])
15 AC_CONFIG_HEADERS([config.h])
19 # Checks for programs.
26 if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then
27 if test x"$YACC" != "xbison -y"; then
28 AC_MSG_ERROR([[bison not found and is required when building from git.
29 Please install bison]])
33 if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then
34 if test x"$LEX" != "xflex"; then
35 AC_MSG_ERROR([[flex not found and is required when building from git.
36 Please install flex]])
41 AM_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)
43 # Checks for typedefs, structures, and compiler characteristics.
48 # Checks for library functions.
51 AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
60 AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
63 AC_CHECK_LIB([uuid], [uuid_generate],
65 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
69 # libuuid not found, check for uuid_create in libc.
70 AC_CHECK_LIB([c], [uuid_create],
72 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
76 # for MinGW32 we have our own internal implemenation of uuid using Windows functions.
77 if test "x$MINGW32" = xno; then
78 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
83 AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
84 AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
87 AC_CHECK_LIB([c], [fmemopen],
89 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
93 # Check for open_memstream
94 AC_CHECK_LIB([c], [open_memstream],
96 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
100 AC_CHECK_LIB([popt], [poptGetContext], [],
101 [AC_MSG_ERROR([Cannot find popt.])]
106 # SWIG version needed or newer:
109 AC_ARG_ENABLE([python],
110 [AC_HELP_STRING([--disable-python],
111 [do not compile Python bindings])],
112 [], [enable_python=yes])
114 AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes])
116 if test "x${enable_python:-yes}" = xyes; then
117 AC_MSG_NOTICE([You may configure with --disable-python ]dnl
118 [if you do not want Python bindings.])
120 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
123 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
124 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
125 AS_IF([test -z "$PYTHON_INCLUDE"], [
126 AS_IF([test -z "$PYTHON_CONFIG"], [
127 AC_PATH_PROGS([PYTHON_CONFIG],
128 [python$PYTHON_VERSION-config python-config],
131 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON.])])
133 AC_MSG_CHECKING([python include flags])
134 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
135 AC_MSG_RESULT([$PYTHON_INCLUDE])
139 pkg_modules="gmodule-2.0 >= 2.0.0"
140 PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
141 AC_SUBST(PACKAGE_LIBS)
143 LIBS="$LIBS $GMODULE_LIBS"
144 PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h"
145 AC_SUBST(PACKAGE_CFLAGS)
147 babeltraceincludedir="${includedir}/babeltrace"
148 AC_SUBST(babeltraceincludedir)
150 babeltracectfincludedir="${includedir}/babeltrace/ctf"
151 AC_SUBST(babeltracectfincludedir)
159 formats/ctf/types/Makefile
160 formats/ctf-text/Makefile
161 formats/ctf-text/types/Makefile
162 formats/ctf-metadata/Makefile
163 formats/bt-dummy/Makefile
164 formats/ctf/metadata/Makefile
168 lib/prio_heap/Makefile
171 bindings/python/Makefile
176 tests/utils/tap/Makefile
178 extras/valgrind/Makefile