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