2 # Process this file with autoconf to produce a configure script.
4 AC_INIT([lttngtop],[0.2],[julien dot desfossez at efficios dot com])
5 AC_CONFIG_AUX_DIR([config])
8 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
11 AC_CONFIG_MACRO_DIR([m4])
13 AC_CONFIG_HEADERS([config.h])
15 # Checks for programs.
22 # Checks for typedefs, structures, and compiler characteristics.
27 # Checks for library functions.
30 AC_CHECK_FUNCS([bzero gettimeofday munmap strtoul])
33 AC_CHECK_LIB([uuid], [uuid_generate], [],
34 [AC_MSG_ERROR([Cannot find the libuuid library.])]
38 AC_CHECK_LIB([popt], [poptGetContext], [],
39 [AC_MSG_ERROR([Cannot find the popt library.])]
42 # Check for libncurses
43 AC_CHECK_LIB([ncurses], [initscr], [],
44 [AC_MSG_ERROR([Cannot find the the ncurses library.])]
47 # Check for libpanel, also part of libncurses
48 # (but this check will add the required -lpanel flag)
49 AC_CHECK_LIB([panel], [update_panels], [],
50 [AC_MSG_ERROR([Cannot find the the ncurses library.])]
53 # Check for libbabeltrace
54 AC_CHECK_LIB([babeltrace], [bt_context_create], [],
55 [AC_MSG_ERROR([Cannot find the babeltrace library.])]
58 # Check for libbabeltrace-ctf
59 AC_CHECK_LIB([babeltrace-ctf], [bt_ctf_iter_create], [],
60 [AC_MSG_ERROR([Cannot find the babeltrace-ctf library.])]
63 # Check for Glib. It needs to be installed anyway or this macro will not be defined.
64 AM_PATH_GLIB_2_0([2.22.0], [],
65 [AC_MSG_ERROR([Glib 2.22 is required in order to compile LTTngTop.
66 Please install the Glib development files.])], [gmodule]
69 pkg_modules="gmodule-2.0 >= 2.0.0"
70 PKG_CHECK_MODULES(GMODULE, [$pkg_modules])
71 AC_SUBST(PACKAGE_LIBS)
72 LIBS="$LIBS $GMODULE_LIBS"
74 PACKAGE_CFLAGS="$GMODULE_CFLAGS -Wall -Werror=format-security"
75 AC_SUBST(PACKAGE_CFLAGS)