fix to use AM_PATH_GLIB_2_0
[lttv.git] / ltt / branches / poly / configure.in
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.57)
5 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
6 AM_INIT_AUTOMAKE(LinuxTraceToolkit,0.9.7-29052003)
7 AM_CONFIG_HEADER([config.h])
8 AM_PROG_LIBTOOL
9
10 AM_PATH_GLIB_2_0(2.0.0, ,AC_MSG_ERROR([glib is required in order to compile LinuxTraceToolkit - download it from ftp://ftp.gtk.org/pub/gtk]) , gmodule)
11
12 # Checks for programs.
13 AC_PROG_CC
14
15 # Checks for libraries.
16 AC_CHECK_LIB([popt], [poptGetNextOpt])
17 #AC_CHECK_LIB([gmodule-2.0], [g_module_open])
18 AC_CHECK_LIB([dl], [dlopen])
19 #AC_CHECK_LIB([glib-2.0], [g_malloc])
20
21 # Checks for header files.
22 AC_HEADER_STDC
23 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h sys/time.h unistd.h])
24
25 # Checks for typedefs, structures, and compiler characteristics.
26 AC_HEADER_STDBOOL
27 AC_C_CONST
28 AC_C_INLINE
29 AC_TYPE_OFF_T
30 AC_TYPE_SIZE_T
31 AC_HEADER_TIME
32
33 # Checks for library functions.
34 AC_FUNC_ERROR_AT_LINE
35 AC_FUNC_MALLOC
36 AC_FUNC_SELECT_ARGTYPES
37 AC_CHECK_FUNCS([select])
38
39 #CPPFLAGS="$CPPFLAGS -I"
40
41 lttvplugindir="${libdir}/lttv/plugins"
42 AC_SUBST(lttvplugindir)
43
44 lttlibdir="${libdir}/ltt"
45 AC_SUBST(lttlibdir)
46
47
48 DEFAULT_INCLUDES="-I\$(top_srcdir)/include"
49 AC_SUBST(DEFAULT_INCLUDES)
50
51 #CPPFLAGS="${GLIB_CFLAGS}"
52 #AC_SUBST(CPPFLAGS)
53
54 lttvincludedir="${includedir}/lttv"
55 AC_SUBST(lttvincludedir)
56
57 lttincludedir="${includedir}/ltt"
58 AC_SUBST(lttincludedir)
59
60 AC_CONFIG_FILES([Makefile
61 lttv/Makefile
62 lttv/modules/Makefile
63 lttv/modules/gui/Makefile
64 lttv/modules/text/Makefile
65 lttv/plugins/Makefile
66 lttv/plugins/examples/Makefile
67 lttd/Makefile
68 ltt/Makefile
69 include/Makefile
70 include/ltt/Makefile
71 include/lttv/Makefile])
72 AC_OUTPUT
This page took 0.035109 seconds and 4 git commands to generate.