Indicate default debug-info build settings in configure help
[babeltrace.git] / configure.ac
... / ...
CommitLineData
1AC_PREREQ([2.50])
2AC_INIT([babeltrace],[1.3.2],[jeremie.galarneau@efficios.com],[],[https://diamon.org/babeltrace])
3AC_SUBST([BABELTRACE_LIBRARY_VERSION], [1:0:0])
4
5AC_CONFIG_HEADERS([config.h])
6AC_CONFIG_AUX_DIR([config])
7AC_CONFIG_MACRO_DIR([m4])
8
9AC_CANONICAL_TARGET
10AC_CANONICAL_HOST
11
12AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
13AM_MAINTAINER_MODE([enable])
14
15# Enable silent rules if available (Introduced in AM 1.11)
16m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
17
18# Checks for C compiler
19AC_USE_SYSTEM_EXTENSIONS
20AC_SYS_LARGEFILE
21AC_PROG_CC
22AC_PROG_CC_STDC
23
24# Checks for programs.
25AC_PROG_MAKE_SET
26LT_INIT
27AC_PROG_YACC
28AC_PROG_LEX
29AC_PROG_MKDIR_P
30AC_PROG_LN_S
31
32AX_C___ATTRIBUTE__
33AS_IF([test "x$ax_cv___attribute__" = "xyes"],
34 [:],
35 [AC_MSG_ERROR([The compiler does not support __attribute__ extensions])])
36
37AX_PTHREAD(,[AC_MSG_ERROR([Could not configure pthreads support])])
38LIBS="$PTHREAD_LIBS $LIBS"
39CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
40CC="$PTHREAD_CC"
41
42# Check linker option
43AX_APPEND_LINK_FLAGS([-Wl,--no-as-needed], [LD_NO_AS_NEEDED])
44AC_SUBST([LD_NO_AS_NEEDED])
45
46AC_HEADER_STDBOOL
47AC_CHECK_HEADERS([ \
48 fcntl.h \
49 float.h \
50 libintl.h \
51 limits.h \
52 malloc.h \
53 netdb.h \
54 netinet/in.h \
55 stddef.h \
56 sys/socket.h \
57])
58
59if test ! -f "$srcdir/formats/ctf/metadata/ctf-parser.h"; then
60 if test x"$(basename "$YACC")" != "xbison -y"; then
61 AC_MSG_ERROR([[bison not found and is required when building from git.
62 Please install bison]])
63 fi
64 AC_PATH_PROG([BISON],[bison])
65 AX_PROG_BISON_VERSION([2.4], [],[
66 AC_MSG_ERROR([[Bison >= 2.4 is required when building from git]])
67 ])
68fi
69
70if test ! -f "$srcdir/formats/ctf/metadata/ctf-lexer.c"; then
71 if test x"$LEX" != "xflex"; then
72 AC_MSG_ERROR([[flex not found and is required when building from git.
73 Please install flex]])
74 fi
75 AC_PATH_PROG([FLEX],[flex])
76 AX_PROG_FLEX_VERSION([2.5.35], [],[
77 AC_MSG_ERROR([[Flex >= 2.5.35 is required when building from git]])
78 ])
79fi
80
81AM_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)
82
83# Check what libraries are required on this platform to link sockets programs.
84AX_LIB_SOCKET_NSL
85
86# Checks for typedefs, structures, and compiler characteristics.
87AC_C_INLINE
88AC_TYPE_PID_T
89AC_TYPE_SIZE_T
90
91# Checks for library functions.
92AC_FUNC_ALLOCA
93AC_FUNC_FORK
94AC_FUNC_MALLOC
95AC_FUNC_MKTIME
96AC_FUNC_MMAP
97AC_FUNC_REALLOC
98AC_FUNC_STRERROR_R
99AC_CHECK_FUNCS([ \
100 atexit \
101 dirfd \
102 dup2 \
103 ftruncate \
104 gethostbyname \
105 gethostname \
106 gettimeofday \
107 localtime_r \
108 memchr \
109 memset \
110 mkdir \
111 mkdtemp \
112 munmap \
113 rmdir \
114 setenv \
115 socket \
116 strchr \
117 strdup \
118 strerror \
119 strndup \
120 strnlen \
121 strrchr \
122 strtoul \
123 strtoull \
124 tzset \
125 uname \
126])
127
128MINGW32=no
129DEFAULT_ENABLE_DEBUGINFO=yes
130AS_CASE([$host_os],
131 [solaris*|darwin*],
132 [
133 DEFAULT_ENABLE_DEBUGINFO=no
134 ],
135 [mingw*],
136 [
137 MINGW32=yes
138 ]
139)
140
141AM_CONDITIONAL([BABELTRACE_BUILD_WITH_MINGW], [test "x$MINGW32" = "xyes"])
142
143# Check for libuuid
144AC_CHECK_LIB([uuid], [uuid_generate],
145[
146 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBUUID], 1, [Has libuuid support.])
147 have_libuuid=yes
148],
149[
150 # libuuid not found, check for uuid_create in libc.
151 AC_CHECK_LIB([c], [uuid_create],
152 [
153 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_LIBC_UUID], 1, [Has libc uuid support.])
154 have_libc_uuid=yes
155 ],
156 [
157 # for MinGW32 we have our own internal implemenation of uuid using Windows functions.
158 if test "x$MINGW32" = xno; then
159 AC_MSG_ERROR([Cannot find libuuid uuid_generate nor libc uuid_create. Use [LDFLAGS]=-Ldir to specify their location.])
160 fi
161 ])
162]
163)
164AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBUUID], [test "x$have_libuuid" = "xyes"])
165AM_CONDITIONAL([BABELTRACE_BUILD_WITH_LIBC_UUID], [test "x$have_libc_uuid" = "xyes"])
166
167# Check for fmemopen
168AC_CHECK_LIB([c], [fmemopen],
169[
170 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FMEMOPEN], 1, [Has fmemopen support.])
171]
172)
173
174# Check for open_memstream
175AC_CHECK_LIB([c], [open_memstream],
176[
177 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_OPEN_MEMSTREAM], 1, [Has open_memstream support.])
178]
179)
180
181# Check for posix_fallocate
182AC_CHECK_LIB([c], [posix_fallocate],
183[
184 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_POSIX_FALLOCATE], 1, [Has posix_fallocate support.])
185]
186)
187
188# Check for faccessat
189AC_CHECK_LIB([c], [faccessat],
190[
191 AC_DEFINE_UNQUOTED([BABELTRACE_HAVE_FACCESSAT], 1, [Has faccessat support.])
192]
193)
194
195AC_CHECK_LIB([popt], [poptGetContext], [],
196 [AC_MSG_ERROR([Cannot find popt.])]
197)
198
199# For Python
200# SWIG version needed or newer:
201swig_version=2.0.0
202
203AC_ARG_ENABLE([python-bindings],
204 [AC_HELP_STRING([--enable-python-bindings],
205 [generate Python bindings])],
206 [enable_python=yes], [enable_python=no])
207
208AM_CONDITIONAL([USE_PYTHON], [test "x${enable_python:-yes}" = xyes])
209
210if test "x${enable_python:-yes}" = xyes; then
211 AX_PKG_SWIG($swig_version, [], [ AC_MSG_ERROR([SWIG $swig_version or newer is needed]) ])
212 AM_PATH_PYTHON
213
214 AM_PATH_PYTHON_MODULES([PYTHON])
215 # pythondir is the path where extra modules are to be installed
216 pythondir=$PYTHON_PREFIX/$PYTHON_MODULES_PATH
217 # pyexecdir is the path that contains shared objects used by the extra modules
218 pyexecdir=$PYTHON_EXEC_PREFIX/$PYTHON_MODULES_PATH
219 AC_ARG_VAR([PYTHON_INCLUDE], [Include flags for python, bypassing python-config])
220 AC_ARG_VAR([PYTHON_CONFIG], [Path to python-config])
221 AS_IF([test -z "$PYTHON_INCLUDE"], [
222 AS_IF([test -z "$PYTHON_CONFIG"], [
223 AC_PATH_PROGS([PYTHON_CONFIG],
224 [python$PYTHON_VERSION-config python-config],
225 [no],
226 [`dirname $PYTHON`])
227 AS_IF([test "$PYTHON_CONFIG" = no], [AC_MSG_ERROR([cannot find python-config for $PYTHON. Do you have python-dev installed?])])
228 ])
229 AC_MSG_CHECKING([python include flags])
230 PYTHON_INCLUDE=`$PYTHON_CONFIG --includes`
231 AC_MSG_RESULT([$PYTHON_INCLUDE])
232 ])
233
234else
235 AC_MSG_NOTICE([You may configure with --enable-python-bindings ]dnl
236[if you want Python bindings.])
237
238fi
239
240# Optional debuginfo feature (enabled by default)
241AS_IF([test "x$DEFAULT_ENABLE_DEBUGINFO" = xyes],
242 [AC_ARG_ENABLE([debuginfo], [AC_HELP_STRING([--disable-debuginfo], [disable the debug info feature (default on OS X and Solaris)])], [], [enable_debuginfo=yes])],
243 [AC_ARG_ENABLE([debuginfo], [AC_HELP_STRING([--enable-debuginfo], [enable the debug info feature (default on Linux)])], [], [enable_debuginfo=no])]
244)
245
246AM_CONDITIONAL([ENABLE_DEBUGINFO], [test "x$enable_debuginfo" = xyes])
247AS_IF([test "x$enable_debuginfo" = xyes], [
248 AC_CHECK_LIB([elf], [elf_version], [], [])
249 AC_CHECK_LIB([dw], [dwarf_begin], [], [])
250 AS_IF([test "x$ac_cv_lib_elf_elf_version" = xno || test "x$ac_cv_lib_dw_dwarf_begin" = xno],
251 [AC_MSG_ERROR(Missing library from elfutils required for debuginfo. You can disable this feature with --disable-debuginfo.)]
252 )
253 AC_DEFINE([ENABLE_DEBUGINFO], [1], [Define to 1 if you enable the 'debuginfo' feature])
254], [])
255
256pkg_modules="gmodule-2.0 >= 2.0.0"
257PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
258AC_SUBST(PACKAGE_LIBS)
259
260LIBS="$LIBS $GMODULE_LIBS"
261PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Wformat"
262AC_SUBST(PACKAGE_CFLAGS)
263
264DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_builddir)/include -include config.h"
265AC_SUBST(DEFAULT_INCLUDES)
266
267babeltraceincludedir="${includedir}/babeltrace"
268AC_SUBST(babeltraceincludedir)
269
270babeltracectfincludedir="${includedir}/babeltrace/ctf"
271AC_SUBST(babeltracectfincludedir)
272
273babeltracectfwriterincludedir="${includedir}/babeltrace/ctf-writer"
274AC_SUBST(babeltracectfwriterincludedir)
275
276AC_CONFIG_FILES([
277 Makefile
278 types/Makefile
279 compat/Makefile
280 formats/Makefile
281 formats/ctf/Makefile
282 formats/ctf/types/Makefile
283 formats/ctf-text/Makefile
284 formats/ctf-text/types/Makefile
285 formats/ctf-metadata/Makefile
286 formats/bt-dummy/Makefile
287 formats/lttng-live/Makefile
288 formats/ctf/metadata/Makefile
289 formats/ctf/writer/Makefile
290 converter/Makefile
291 doc/Makefile
292 lib/Makefile
293 lib/prio_heap/Makefile
294 include/Makefile
295 bindings/Makefile
296 bindings/python/Makefile
297 tests/Makefile
298 tests/bin/Makefile
299 tests/lib/Makefile
300 tests/utils/Makefile
301 tests/utils/tap/Makefile
302 extras/Makefile
303 extras/valgrind/Makefile
304 babeltrace.pc
305 babeltrace-ctf.pc
306])
307
308AC_CONFIG_FILES([tests/lib/test_seek_big_trace], [chmod +x tests/lib/test_seek_big_trace])
309AC_CONFIG_FILES([tests/lib/test_seek_empty_packet], [chmod +x tests/lib/test_seek_empty_packet])
310AC_CONFIG_FILES([tests/bin/test_trace_read], [chmod +x tests/bin/test_trace_read])
311AC_CONFIG_FILES([tests/bin/test_intersection], [chmod +x tests/bin/test_intersection])
312AC_CONFIG_FILES([tests/bin/test_packet_seq_num], [chmod +x tests/bin/test_packet_seq_num])
313
314AC_OUTPUT
This page took 0.0228 seconds and 4 git commands to generate.