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