Remove more warnings releated to BABEL_CLEANUP ifdef code.
[lttv.git] / configure.ac
CommitLineData
ce0214a6 1# This file is part of the Linux Trace Toolkit viewer
2# Copyright (C) 2003-2004 Mathieu Desnoyers
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License Version 2 as
6# published by the Free Software Foundation;
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program; if not, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16# MA 02111-1307, USA.
17
18
19
9f14a497 20# -*- Autoconf -*-
21# Process this file with autoconf to produce a configure script.
22
23AC_PREREQ(2.57)
51e42eaf 24AC_INIT([lttv], [1.5-beta1], [yannick.brosseau@gmail.com])
2e589766
AM
25AC_CONFIG_AUX_DIR([config])
26AC_CONFIG_MACRO_DIR([config])
27AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip])
9ecb7d44 28AM_SILENT_RULES([yes])
2e589766
AM
29AC_CONFIG_HEADERS([config.h])
30LT_INIT
31
7b84cb1c 32# If requested, avoid building LTTV part
2e589766
AM
33AC_ARG_WITH(lttv-gui,
34 AS_HELP_STRING([--with-lttv-gui],
35 [build LTTV gui, as opposed to only build textmode LTTV [[default=yes]]]),
36 [with_lttv_gui="$withval"],
37 [with_lttv_gui="yes"])
68d52dcc 38
2e589766 39AM_CONDITIONAL([BUILD_LTTV_GUI], [ test "x$with_lttv_gui" = "xyes" ])
68d52dcc 40
2e589766 41AM_PATH_GLIB_2_0(2.4.0, , AC_MSG_ERROR([glib is required in order to compile LTTV]) , gmodule)
9f14a497 42
68d52dcc 43# GTK is only needed by the GUI
2e589766
AM
44AS_IF([test "x$with_lttv_gui" = "xyes"],[
45 AM_PATH_GTK_2_0(2.4.0, , AC_MSG_ERROR([GTK 2 is required in order to compile the LTTV GUI]) , gmodule)
46])
442137a6 47
065f8f41 48AC_PATH_PROGS(BASH, bash)
49
ddd2aaff 50AC_SYS_LARGEFILE
51
9f14a497 52# Checks for programs.
53AC_PROG_CC
54
55# Checks for libraries.
2e589766
AM
56AC_CHECK_LIB([popt], [poptGetNextOpt], [],
57 AC_MSG_ERROR([libpopt is required in order to compile LTTV])
58)
59AC_CHECK_LIB([m], [round], [],
60 AC_MSG_ERROR([Mathematical libraries are missing.])
61)
62AC_CHECK_LIB([util], [forkpty], [],
63 AC_MSG_ERROR([libutil is required in order to compile LTTV])
64)
65
66# Trace synchronization feature, which requires libglpk
67AC_ARG_WITH([trace-sync],
68 AS_HELP_STRING([--with-trace-sync],
69 [support trace synchronization accuracy calculation (needs libglpk) [default=no]]),
70 [with_trace_sync="$withval"],
71 [with_trace_sync="no"])
72
73AS_IF([test "x$with_trace_sync" = "xyes"],[
74 AC_CHECK_LIB([glpk], [glp_create_prob], [], [
75 AC_MSG_ERROR([The trace synchronization feature requires libglpk, please install it first.])
76 ])
77 AC_DEFINE([HAVE_LIBGLPK], [1], [Define if you have libglpk]),
78])
79
36ea7706 80
9f14a497 81# Checks for header files.
82AC_HEADER_STDC
36ea7706 83AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h pthread.h])
9f14a497 84
68d52dcc 85
78608bce 86# If we want the gui, we need additionnal flags for GTK
2e589766
AM
87AS_IF([test "x$with_lttv_gui" = "xyes"],[
88 pkg_modules="gtk+-2.0 >= 2.0.0"
89 PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
2e589766 90])
104325ef 91
31534155
AM
92pkg_modules="gmodule-2.0 >= 2.0.0"
93PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
94
3d55af6e
BP
95pkg_modules="gobject-2.0 >= 2.0.0"
96PKG_CHECK_MODULES(GOBJECT, [$pkg_modules])
97
b3db7f06
YB
98PKG_CHECK_MODULES(BABELTRACE, [babeltrace >= 1.1.0], [],
99 [AC_CHECK_LIB([babeltrace], [bt_context_create], [],
100 [AC_MSG_ERROR([Cannot find the babeltrace library.])]
101 )
102
103# Check for libbabeltrace-ctf
104AC_CHECK_LIB([babeltrace-ctf], [bt_ctf_iter_create], [],
105 [AC_MSG_ERROR([Cannot find the babeltrace-ctf library.])]
106 )
107])
fac33835 108
cfddb03e
YB
109AC_CHECK_LIB([babeltrace], [bt_iter_equals_pos],
110 [AC_DEFINE([HAVE_BT_ITER_EQUALS_POS],[],[Have equal function])], [])
111
3da79304 112AC_CHECK_LIB([babeltrace-ctf], [bt_ctf_event_name],
59533bfd 113 [], [AC_MSG_ERROR([libbabeltrace-ctf is required in order to compile LTTV])])
cfddb03e 114
fac33835 115LIBS="$LIBS $GTK_LIBS $GOBJECT_LIBS $GMODULE_LIBS $BABELTRACE_LIBS"
2e589766 116PACKAGE_CFLAGS="$GTK_CFLAGS $GOBJECT_CFLAGS $GMODULE_CFLAGS -Wall -Wformat-security"
fac33835 117
104325ef
BP
118MODULE_CFLAGS="$PACKAGE_CFLAGS -fvisibility=hidden"
119MODULE_LDFLAGS="-module -avoid-version"
120AC_SUBST([PACKAGE_CFLAGS])
2e589766 121AC_SUBST(PACKAGE_LIBS)
104325ef
BP
122AC_SUBST([MODULE_CFLAGS])
123AC_SUBST([MODULE_LDFLAGS])
388a40e9 124
9f14a497 125# Checks for typedefs, structures, and compiler characteristics.
126AC_HEADER_STDBOOL
127AC_C_CONST
128AC_C_INLINE
129AC_TYPE_OFF_T
130AC_TYPE_SIZE_T
131AC_HEADER_TIME
132
133# Checks for library functions.
134AC_FUNC_ERROR_AT_LINE
9f14a497 135AC_FUNC_SELECT_ARGTYPES
136AC_CHECK_FUNCS([select])
137
7d3dcbe0 138AC_ARG_ENABLE(lttvstatic,
2e589766
AM
139 AS_HELP_STRING([--enable-lttvstatic],
140 [build a statically linked executable [[default=no]]]),
76b647ab
AM
141 [lttvstatic="$enableval"],
142 [lttvstatic="no"])
143AM_CONDITIONAL([LTTVSTATIC], [ test "x$lttvstatic" = "xyes" ] )
2e589766 144
25fba836 145lttvlibdir="${libdir}/lttv"
96cbee09 146lttvplugindir="${lttvlibdir}/plugins"
0c56e138 147top_lttvdir="\$(top_srcdir)/lttv"
13f86ce2 148top_lttvwindowdir="\$(top_srcdir)/lttv/modules/gui/lttvwindow"
fc17f7eb 149
f0d243f7 150DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_lttvdir) -I\$(top_lttvwindowdir)"
273475ce 151
940dc6d6 152lttvincludedir="${includedir}/lttv"
13f86ce2 153lttvwindowincludedir="${includedir}/lttvwindow"
5cec0a15 154lttctlincludedir="${includedir}/liblttctl"
6591c2c3 155
25fba836 156AC_SUBST(lttvlibdir)
6591c2c3 157AC_SUBST(lttvplugindir)
6591c2c3 158AC_SUBST(top_lttvdir)
159AC_SUBST(top_lttvwindowdir)
160AC_SUBST(DEFAULT_INCLUDES)
6591c2c3 161AC_SUBST(lttvincludedir)
13f86ce2 162AC_SUBST(lttvwindowincludedir)
5cec0a15 163AC_SUBST(lttctlincludedir)
940dc6d6 164
1111bb0f
MD
165# ltt/Makefile
166
9f14a497 167AC_CONFIG_FILES([Makefile
84baf72b
BP
168 lttv/Makefile
169 lttv/lttv/Makefile
84baf72b
BP
170 lttv/modules/Makefile
171 lttv/modules/text/Makefile
172 lttv/modules/gui/Makefile
173 lttv/modules/gui/lttvwindow/Makefile
84baf72b
BP
174 lttv/modules/gui/lttvwindow/lttvwindow/Makefile
175 lttv/modules/gui/lttvwindow/pixmaps/Makefile
176 lttv/modules/gui/controlflow/Makefile
177 lttv/modules/gui/detailedevents/Makefile
84baf72b 178 lttv/modules/gui/histogram/Makefile
84baf72b 179 lttv/modules/gui/resourceview/Makefile
84baf72b
BP
180 doc/Makefile
181 doc/developer/Makefile
182 doc/developer/developer_guide/Makefile
183 doc/developer/developer_guide/docbook/Makefile
184 doc/developer/developer_guide/html/Makefile
185 doc/user/Makefile
186 doc/user/user_guide/Makefile
187 doc/user/user_guide/docbook/Makefile
188 doc/user/user_guide/html/Makefile])
b91d1669 189# lttv/lttv/sync/Makefile
51e42eaf
YB
190# lttv/modules/gui/interrupts/Makefile
191# lttv/modules/gui/statistics/Makefile
192# lttv/modules/gui/filter/Makefile
193# lttv/modules/gui/tracecontrol/Makefile
194
2e589766 195
9f14a497 196AC_OUTPUT
2e589766 197
67c06453
AM
198# Report on what will be built
199AS_ECHO()
200AS_ECHO("The following components will be built:")
67c06453
AM
201
202AS_ECHO_N("LTTV command line tool: ")
203AS_IF([test "x$with_lttv" = "xyes"],[AS_ECHO("Enabled")],[AS_ECHO("Disabled")])
204
205AS_ECHO_N("LTTV graphical interface: ")
206AS_IF([test "x$with_lttv_gui" = "xyes"],[AS_ECHO("Enabled")],[AS_ECHO("Disabled")])
207
208AS_ECHO_N("Trace synchronization: ")
209AS_IF([test "x$with_trace_sync" = "xyes"],[AS_ECHO("Enabled")],[AS_ECHO("Disabled")])
210
76b647ab
AM
211AS_ECHO()
212AS_ECHO_N("Statically linked executable: ")
213AS_IF([test "x$lttvstatic" = "xyes"],[AS_ECHO("Yes")],[AS_ECHO("No")])
214
67c06453
AM
215AS_ECHO()
216AS_ECHO("Type 'make' to build LTTV.")
217
This page took 0.078495 seconds and 4 git commands to generate.