Added Python 3.0 or better requirement to the README file
[babeltrace.git] / configure.ac
CommitLineData
ac65e355
MD
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
6d204f6d 4AC_INIT([babeltrace],[1.0.2],[mathieu dot desnoyers at efficios dot com])
ac65e355
MD
5AC_CONFIG_AUX_DIR([config])
6AC_CANONICAL_TARGET
7AC_CANONICAL_HOST
8AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
9m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
10
11AC_CONFIG_MACRO_DIR([m4])
12
13AM_PROG_MKDIR_P
14
15AC_CONFIG_HEADERS([config.h])
16
217108a9
MD
17AC_SYS_LARGEFILE
18
ac65e355
MD
19# Checks for programs.
20AC_PROG_CC
21AC_PROG_MAKE_SET
aa225880 22LT_INIT
8b9d5b5e
MD
23AC_PROG_YACC
24AC_PROG_LEX
ac65e355 25
e5f5317f
MD
26AC_DEFUN([AC_PROG_BISON], [AC_CHECK_PROGS(BISON, bison, bison)])
27
a6947cca 28AM_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)
ac65e355
MD
29
30# Checks for typedefs, structures, and compiler characteristics.
31AC_C_INLINE
32AC_TYPE_PID_T
33AC_TYPE_SIZE_T
34
35# Checks for library functions.
36AC_FUNC_MALLOC
37AC_FUNC_MMAP
38AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
39
a4dfa07b
MD
40# Check for libuuid
41AC_CHECK_LIB([uuid], [uuid_generate],
42[
43 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
44 have_libuuid=yes
45],
46[
47 # libuuid not found, check for uuid_create in libc.
48 AC_CHECK_LIB([c], [uuid_create],
49 [
50 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
51 have_libc_uuid=yes
52 ],
53 [
54 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
55 ])
56]
fd55fc57 57)
a4dfa07b
MD
58AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
59AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
fd55fc57 60
f8370579
MD
61# Check for fmemopen
62AC_CHECK_LIB([c], [fmemopen],
63[
64 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
65]
66)
67
68# Check for open_memstream
69AC_CHECK_LIB([c], [open_memstream],
70[
71 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
72]
73)
74
0f536a74
TP
75AC_CHECK_LIB([popt], [poptGetContext], [],
76 [AC_MSG_ERROR([Cannot find popt.])]
77)
78
24a3136a
DS
79
80# For Python
81# SWIG version needed or newer:
82swig_version=2.0.0
83
84AC_ARG_ENABLE([python],
85 [AC_HELP_STRING([--disable-python],
86 [do not compile Python bindings])],
87 [], [enable_python=yes])
88
89AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes])
90
91if test "x${enable_python:-yes}" = xyes; then
92 AC_MSG_NOTICE([You may configure with --disable-python ]dnl
93[if you do not want Python bindings.])
94
95 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
96 AM_PATH_PYTHON
97
98 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
99 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
100 AS_IF([test -z "$PYTHON_INCLUDE"], [
101 AS_IF([test -z "$PYTHON_CONFIG"], [
102 AC_PATH_PROGS([PYTHON_CONFIG],
103 [python$PYTHON_VERSION-config python-config],
104 [no],
105 [`dirname $PYTHON`])
106 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON.])])
107 ])
108 AC_MSG_CHECKING([python include flags])
109 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
110 AC_MSG_RESULT([$PYTHON_INCLUDE])
111 ])
112fi
113
ac65e355
MD
114pkg_modules="gmodule-2.0 >= 2.0.0"
115PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
116AC_SUBST(PACKAGE_LIBS)
117
34d3acc4 118LIBS="$LIBS $GMODULE_LIBS"
217108a9 119PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h"
ac65e355
MD
120AC_SUBST(PACKAGE_CFLAGS)
121
e4d70dc3 122babeltraceincludedir="${includedir}/babeltrace"
70bd0a12
JD
123AC_SUBST(babeltraceincludedir)
124
64a35d1b
JD
125babeltracectfincludedir="${includedir}/babeltrace/ctf"
126AC_SUBST(babeltracectfincludedir)
127
ac65e355
MD
128AC_CONFIG_FILES([
129 Makefile
130 types/Makefile
131 formats/Makefile
132 formats/ctf/Makefile
133 formats/ctf/types/Makefile
1ae19169
MD
134 formats/ctf-text/Makefile
135 formats/ctf-text/types/Makefile
22133895 136 formats/bt-dummy/Makefile
8b9d5b5e 137 formats/ctf/metadata/Makefile
4c8bfb7e 138 converter/Makefile
d2c0553c 139 doc/Makefile
1eb0c69c 140 lib/Makefile
74f21e2d 141 lib/prio_heap/Makefile
e92927d1 142 include/Makefile
24a3136a
DS
143 bindings/Makefile
144 bindings/python/Makefile
ac65e355 145 tests/Makefile
aa968dde 146 tests/lib/Makefile
6aa249b5
MD
147 extras/Makefile
148 extras/valgrind/Makefile
d0acc96d 149 babeltrace.pc
ac65e355
MD
150])
151AC_OUTPUT
This page took 0.032088 seconds and 4 git commands to generate.