LTTV 0.12.37
[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)
e38fd8ad 24AC_INIT([lttv], [0.12.37-17022011], [ltt-dev@lists.casi.polymtl.ca])
7b84cb1c 25AM_INIT_AUTOMAKE
9ecb7d44 26AM_SILENT_RULES([yes])
b445142a 27AM_CONFIG_HEADER(config.h)
39407106 28AM_PROG_LIBTOOL
b00eda44 29
68d52dcc 30# If requested, only build LTT library part
c2e0a887 31AC_ARG_WITH(lttv, [ --with-lttv build whole LTTV system, as opposd to only the trace reading library
3421f649 32 [[default=yes]]])
04d4798d
WB
33if test -z "$with_lttv"; then
34 with_lttv=${with_lttv_default-yes}
68d52dcc 35else
04d4798d
WB
36 if test "$with_lttv" = "no"; then
37 # Requesting lib-only turn off the lttv-gui building as well
38 with_lttv_gui="no"
39 fi
68d52dcc 40fi
04d4798d 41AM_CONDITIONAL(BUILD_LIB_ONLY, test "$with_lttv" = "no")
68d52dcc
WB
42
43
7b84cb1c 44# If requested, avoid building LTTV part
c2e0a887 45AC_ARG_WITH(lttv-gui, [ --with-lttv-gui build LTTV gui, as opposed to only build textmode LTTV
3421f649 46 [[default=yes]]])
68d52dcc 47
04d4798d
WB
48if test -z "$with_lttv_gui"; then
49 with_lttv_gui=${with_lttv_gui_default-yes}
68d52dcc 50fi
04d4798d 51AM_CONDITIONAL(BUILD_LTTV_GUI, test "$with_lttv_gui" = "yes")
68d52dcc 52
b37f012b 53AM_PATH_GLIB_2_0(2.4.0, ,AC_MSG_ERROR([glib is required in order to compile LinuxTraceToolkit - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule)
9f14a497 54
68d52dcc 55# GTK is only needed by the GUI
04d4798d 56if test "$with_lttv_gui" = "yes" ; then
68d52dcc
WB
57 AM_PATH_GTK_2_0(2.4.0, ,AC_MSG_ERROR([gtk is required in order to compile GUI - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule)
58fi
442137a6 59
065f8f41 60AC_PATH_PROGS(BASH, bash)
61
ddd2aaff 62AC_SYS_LARGEFILE
63
9f14a497 64# Checks for programs.
65AC_PROG_CC
66
67# Checks for libraries.
66eaf2eb
BP
68AC_CHECK_LIB([popt], [poptGetNextOpt], POPT_LIBS="-lpopt",
69 AC_MSG_ERROR([libpopt is required in order to compile LinuxTraceToolkit]))
70AC_CHECK_LIB([m], [round], M_LIBS="-lm",
71 AC_MSG_ERROR([Mathematical libraries are missing.]))
72AC_CHECK_LIB([util], [forkpty], UTIL_LIBS="-lutil",
73 AC_MSG_ERROR([libutil is required in order to compile LinuxTraceToolkit]))
74
75AC_ARG_WITH([glpk],
76 [AS_HELP_STRING([--with-glpk@<:@=DIR@:>@],
77 [support trace synchronization accuracy calculation (needs glpk)
78 @<:@default=check@:>@])],
79 [],
80 [with_glpk=check])
81
82GLPK_LIBS=
83 AS_IF([test "x$with_glpk" != xno],
84 [if test "x$with_glpk" != xyes -a -d "$with_glpk"; then
85 LDFLAGS="$LDFLAGS -L$with_glpk"
86 fi
87 AC_CHECK_LIB([glpk], [glp_create_prob],
88 [AC_SUBST([GLPK_LIBS], ["-lglpk"])
89 AC_DEFINE([HAVE_LIBGLPK], [1], [Define if you have libglpk])],
90 [if test "x$with_glpk" != xcheck; then
91 AC_MSG_FAILURE(
92 [--with-glpk was given, but test for glpk failed])
93 fi],
94 -lm)])
36ea7706 95
750eb11a 96# pthread for gdb with dlopen().
3d55af6e 97AC_CHECK_LIB(pthread, pthread_join, [], AC_MSG_ERROR([LinuxThreads is required in order to make sure gdb works fine with lttv-gui]))
36ea7706 98
9f14a497 99# Checks for header files.
100AC_HEADER_STDC
36ea7706 101AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h pthread.h])
9f14a497 102
68d52dcc
WB
103# Set compile flags to java include files if given
104AC_ARG_WITH(java_jdk, [ --with-java-jdk=DIR use java jdk from DIR. Ex : $JAVA_HOME.], JAVA_SDK=$withval,)
105if test $JAVA_SDK; then
106 if test -d $JAVA_SDK; then
107 AC_MSG_RESULT([using java include in $JAVA_SDK])
108 SUBDIRS=`find $JAVA_SDK/include -type d`
a97fddd2 109 CFLAGS+=" "
78608bce 110 CFLAGS+=`for x in $SUBDIRS; do echo -n "-I$x "; done`
a97fddd2 111 CFLAGS+=" "
68d52dcc
WB
112 else
113 AC_MSG_ERROR(Unable to find java include file in $JAVA_JDK)
114 fi
115fi
116
117
118# Check for JNI header files if requested
c2e0a887 119AC_ARG_WITH(jni-interface, [ --with-jni-interface build JNI interface between C and java. Need java include files.
3421f649 120 [[default=no]]])
68d52dcc 121
04d4798d
WB
122if test -z "$with_jni_interface"; then
123 with_jni_interface=${with_jni_interface_default-no}
68d52dcc
WB
124fi
125
04d4798d 126if test "$with_jni_interface" = "yes"; then
68d52dcc
WB
127 AC_CHECK_HEADERS([jni.h],,AC_MSG_ERROR([
128missing jni.h
129Make sure Sun Java or GJC is installed and that this header file exists in the system path.
130Use --with-java-jdk=DIR flag to point to your java include files or desactivate the JNI interface.]))
131fi
04d4798d 132AM_CONDITIONAL(BUILD_JNI_INTERFACE, test "$with_jni_interface" = "yes")
68d52dcc
WB
133
134
c8faea22 135AC_ISC_POSIX
136AC_PROG_CC
137AM_PROG_CC_STDC
138AC_HEADER_STDC
139
78608bce 140# If we want the gui, we need additionnal flags for GTK
04d4798d 141if test "$with_lttv_gui" = "yes" ; then
68d52dcc
WB
142 pkg_modules="gtk+-2.0 >= 2.0.0"
143 PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
144 PACKAGE_CFLAGS="-Wall -Wformat"
145 AC_SUBST(PACKAGE_CFLAGS)
146 AC_SUBST(PACKAGE_LIBS)
78608bce
WB
147# Else, we still have a dependency on gmodule
148# We will add flags for gmodule alone
149else
150 pkg_modules="gmodule-2.0 >= 2.0.0"
151 PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
152 PACKAGE_CFLAGS="-Wall -Wformat"
153 AC_SUBST(PACKAGE_CFLAGS)
154 AC_SUBST(PACKAGE_LIBS)
68d52dcc 155fi
104325ef 156
3d55af6e
BP
157pkg_modules="gobject-2.0 >= 2.0.0"
158PKG_CHECK_MODULES(GOBJECT, [$pkg_modules])
159
6d3ad1b2 160LIBS="$LIBS $M_LIBS $GTK_LIBS $GOBJECT_LIBS $GMODULE_LIBS"
78608bce 161PACKAGE_CFLAGS="$GTK_CFLAGS $GOBJECT_CFLAGS $GMODULE_CFLAGS -Wall -Wformat"
104325ef
BP
162MODULE_CFLAGS="$PACKAGE_CFLAGS -fvisibility=hidden"
163MODULE_LDFLAGS="-module -avoid-version"
164AC_SUBST([PACKAGE_CFLAGS])
165AC_SUBST([MODULE_CFLAGS])
166AC_SUBST([MODULE_LDFLAGS])
388a40e9 167
9f14a497 168# Checks for typedefs, structures, and compiler characteristics.
169AC_HEADER_STDBOOL
170AC_C_CONST
171AC_C_INLINE
172AC_TYPE_OFF_T
173AC_TYPE_SIZE_T
174AC_HEADER_TIME
175
176# Checks for library functions.
177AC_FUNC_ERROR_AT_LINE
f5eafc51 178#AC_FUNC_MALLOC
9f14a497 179AC_FUNC_SELECT_ARGTYPES
180AC_CHECK_FUNCS([select])
181
182#CPPFLAGS="$CPPFLAGS -I"
183
7d3dcbe0
BP
184AC_ARG_ENABLE(lttvstatic,
185 AC_HELP_STRING( [--enable-lttvstatic],
c2e0a887 186 [build a statically linked executable @<:@default=no@:>@]),
7d3dcbe0
BP
187 [with_lttvstatic="yes"],
188 [with_lttvstatic="no"])
189AM_CONDITIONAL(LTTVSTATIC, test "x$with_lttvstatic" = "xyes")
25fba836 190lttvlibdir="${libdir}/lttv"
96cbee09 191lttvplugindir="${lttvlibdir}/plugins"
6da3640c 192#lttlibdir="${libdir}/ltt"
0c56e138 193top_lttvdir="\$(top_srcdir)/lttv"
13f86ce2 194top_lttvwindowdir="\$(top_srcdir)/lttv/modules/gui/lttvwindow"
fc17f7eb 195
f0d243f7 196DEFAULT_INCLUDES="-I\$(top_srcdir) -I\$(top_builddir) -I\$(top_lttvdir) -I\$(top_lttvwindowdir)"
273475ce 197
d8f124de 198lttincludedir="${includedir}/ltt"
940dc6d6 199lttvincludedir="${includedir}/lttv"
13f86ce2 200lttvwindowincludedir="${includedir}/lttvwindow"
5cec0a15 201lttctlincludedir="${includedir}/liblttctl"
6591c2c3 202
3d55af6e
BP
203AC_SUBST([POPT_LIBS])
204AC_SUBST([UTIL_LIBS])
25fba836 205AC_SUBST(lttvlibdir)
6591c2c3 206AC_SUBST(lttvplugindir)
6da3640c 207#AC_SUBST(lttlibdir)
6591c2c3 208AC_SUBST(top_lttvdir)
209AC_SUBST(top_lttvwindowdir)
210AC_SUBST(DEFAULT_INCLUDES)
211AC_SUBST(lttincludedir)
212AC_SUBST(lttvincludedir)
13f86ce2 213AC_SUBST(lttvwindowincludedir)
5cec0a15 214AC_SUBST(lttctlincludedir)
940dc6d6 215
c17abb87 216 #lttv/modules/gui/tutorial/Makefile
217 #lttv/modules/gui/diskperformance/Makefile
9f14a497 218AC_CONFIG_FILES([Makefile
84baf72b
BP
219 lttv/Makefile
220 lttv/lttv/Makefile
ccf1db70 221 lttv/lttv/sync/Makefile
84baf72b
BP
222 lttv/modules/Makefile
223 lttv/modules/text/Makefile
224 lttv/modules/gui/Makefile
225 lttv/modules/gui/lttvwindow/Makefile
226 lttv/modules/gui/interrupts/Makefile
227 lttv/modules/gui/lttvwindow/lttvwindow/Makefile
228 lttv/modules/gui/lttvwindow/pixmaps/Makefile
229 lttv/modules/gui/controlflow/Makefile
230 lttv/modules/gui/detailedevents/Makefile
231 lttv/modules/gui/statistics/Makefile
232 lttv/modules/gui/histogram/Makefile
233 lttv/modules/gui/filter/Makefile
234 lttv/modules/gui/tracecontrol/Makefile
235 lttv/modules/gui/resourceview/Makefile
236 ltt/Makefile
237 doc/Makefile
238 doc/developer/Makefile
239 doc/developer/developer_guide/Makefile
240 doc/developer/developer_guide/docbook/Makefile
241 doc/developer/developer_guide/html/Makefile
242 doc/user/Makefile
243 doc/user/user_guide/Makefile
244 doc/user/user_guide/docbook/Makefile
245 doc/user/user_guide/html/Makefile])
9f14a497 246AC_OUTPUT
This page took 0.078802 seconds and 4 git commands to generate.