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