Detect Python packages directory on configure
[babeltrace.git] / configure.ac
CommitLineData
ac65e355
MD
1# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
90395824 4AC_INIT([babeltrace],[1.2.4],[mathieu dot desnoyers at efficios dot com])
3fbccce7
MD
5
6# Following the numbering scheme proposed by libtool for the library version
7# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
8AC_SUBST([BABELTRACE_LIBRARY_VERSION], [1:0:0])
9
ac65e355
MD
10AC_CONFIG_AUX_DIR([config])
11AC_CANONICAL_TARGET
12AC_CANONICAL_HOST
13AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
14m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
15
16AC_CONFIG_MACRO_DIR([m4])
17
abb7b782 18AC_PROG_MKDIR_P
ac65e355
MD
19
20AC_CONFIG_HEADERS([config.h])
21
217108a9
MD
22AC_SYS_LARGEFILE
23
ac65e355 24# Checks for programs.
267325e9 25AC_PROG_CC_STDC
ac65e355 26AC_PROG_MAKE_SET
aa225880 27LT_INIT
8b9d5b5e
MD
28AC_PROG_YACC
29AC_PROG_LEX
ac65e355 30
331d78f5
YB
31if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then
32 if test x"$YACC" != "xbison -y"; then
33 AC_MSG_ERROR([[bison not found and is required when building from git.
34 Please install bison]])
35 fi
36fi
37
38if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then
39 if test x"$LEX" != "xflex"; then
40 AC_MSG_ERROR([[flex not found and is required when building from git.
41 Please install flex]])
42 fi
43fi
44
e5f5317f 45
a6947cca 46AM_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
47
48# Checks for typedefs, structures, and compiler characteristics.
49AC_C_INLINE
50AC_TYPE_PID_T
51AC_TYPE_SIZE_T
52
53# Checks for library functions.
54AC_FUNC_MALLOC
55AC_FUNC_MMAP
56AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
57
58819898
JI
58# Check for MinGW32.
59MINGW32=no
60case $host in
61 *-*-mingw*)
62 MINGW32=yes;;
63esac
64
65AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
66
a4dfa07b
MD
67# Check for libuuid
68AC_CHECK_LIB([uuid], [uuid_generate],
69[
70 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
71 have_libuuid=yes
72],
73[
74 # libuuid not found, check for uuid_create in libc.
75 AC_CHECK_LIB([c], [uuid_create],
76 [
77 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
78 have_libc_uuid=yes
79 ],
80 [
9d1e7de0
JI
81 # for MinGW32 we have our own internal implemenation of uuid using Windows functions.
82 if test "x$MINGW32" = xno; then
83 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
84 fi
a4dfa07b
MD
85 ])
86]
fd55fc57 87)
a4dfa07b
MD
88AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
89AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
fd55fc57 90
f8370579
MD
91# Check for fmemopen
92AC_CHECK_LIB([c], [fmemopen],
93[
94 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
95]
96)
97
98# Check for open_memstream
99AC_CHECK_LIB([c], [open_memstream],
100[
101 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
102]
103)
104
0f536a74
TP
105AC_CHECK_LIB([popt], [poptGetContext], [],
106 [AC_MSG_ERROR([Cannot find popt.])]
107)
108
24a3136a
DS
109
110# For Python
111# SWIG version needed or newer:
112swig_version=2.0.0
113
94a6cea3
JG
114AC_ARG_ENABLE([python-bindings],
115 [AC_HELP_STRING([--enable-python-bindings],
116 [generate Python bindings])],
117 [enable_python=yes], [enable_python=no])
24a3136a
DS
118
119AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes])
120
121if test "x${enable_python:-yes}" = xyes; then
24a3136a
DS
122 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
123 AM_PATH_PYTHON
124
33287b16
JG
125 AM_PATH_PYTHON_MODULES([PYTHON])
126 # pythondir is the path where extra modules are to be installed
127 pythondir=$PYTHON_PREFIX/$PYTHON_MODULES_PATH
128 # pyexecdir is the path that contains shared objects used by the extra modules
129 pyexecdir=$PYTHON_EXEC_PREFIX/$PYTHON_MODULES_PATH
24a3136a
DS
130 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
131 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
132 AS_IF([test -z "$PYTHON_INCLUDE"], [
133 AS_IF([test -z "$PYTHON_CONFIG"], [
134 AC_PATH_PROGS([PYTHON_CONFIG],
135 [python$PYTHON_VERSION-config python-config],
136 [no],
137 [`dirname $PYTHON`])
94a6cea3 138 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
24a3136a
DS
139 ])
140 AC_MSG_CHECKING([python include flags])
141 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
142 AC_MSG_RESULT([$PYTHON_INCLUDE])
143 ])
94a6cea3
JG
144
145else
146 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
147[if you want Python bindings.])
148
24a3136a
DS
149fi
150
ac65e355
MD
151pkg_modules="gmodule-2.0 >= 2.0.0"
152PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
153AC_SUBST(PACKAGE_LIBS)
154
34d3acc4 155LIBS="$LIBS $GMODULE_LIBS"
217108a9 156PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat -include config.h"
ac65e355
MD
157AC_SUBST(PACKAGE_CFLAGS)
158
e4d70dc3 159babeltraceincludedir="${includedir}/babeltrace"
70bd0a12
JD
160AC_SUBST(babeltraceincludedir)
161
64a35d1b
JD
162babeltracectfincludedir="${includedir}/babeltrace/ctf"
163AC_SUBST(babeltracectfincludedir)
164
273b65be
JG
165babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer"
166AC_SUBST(babeltracectfwriterincludedir)
167
ac65e355
MD
168AC_CONFIG_FILES([
169 Makefile
170 types/Makefile
9d1e7de0 171 compat/Makefile
ac65e355
MD
172 formats/Makefile
173 formats/ctf/Makefile
174 formats/ctf/types/Makefile
1ae19169
MD
175 formats/ctf-text/Makefile
176 formats/ctf-text/types/Makefile
5d93a76e 177 formats/ctf-metadata/Makefile
22133895 178 formats/bt-dummy/Makefile
4a744367 179 formats/lttng-live/Makefile
8b9d5b5e 180 formats/ctf/metadata/Makefile
273b65be 181 formats/ctf/writer/Makefile
4c8bfb7e 182 converter/Makefile
d2c0553c 183 doc/Makefile
1eb0c69c 184 lib/Makefile
74f21e2d 185 lib/prio_heap/Makefile
e92927d1 186 include/Makefile
24a3136a
DS
187 bindings/Makefile
188 bindings/python/Makefile
ac65e355 189 tests/Makefile
19badea8 190 tests/bin/Makefile
aa968dde 191 tests/lib/Makefile
1833a3d1
CB
192 tests/utils/Makefile
193 tests/utils/tap/Makefile
6aa249b5
MD
194 extras/Makefile
195 extras/valgrind/Makefile
d0acc96d 196 babeltrace.pc
e7a7efdb 197 babeltrace-ctf.pc
ac65e355
MD
198])
199AC_OUTPUT
This page took 0.037338 seconds and 4 git commands to generate.