2012-03-28 13:24:49 +02:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
dnl Created by Anjuta application wizard.
|
|
|
|
|
2012-04-01 19:32:18 +02:00
|
|
|
AC_INIT(icinga, 2.0)
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
|
|
|
|
AM_INIT_AUTOMAKE([1.11])
|
|
|
|
|
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
|
|
|
|
AC_PROG_CXX
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LT_INIT
|
2012-04-01 09:48:52 +02:00
|
|
|
LT_CONFIG_LTDL_DIR([ltdl])
|
|
|
|
LTDL_INIT
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-02 10:29:08 +02:00
|
|
|
if test "x$with_included_ltdl" != "xyes"; then
|
|
|
|
AC_CHECK_LIB([ltdl], [lt_dladvise_init],
|
|
|
|
[],
|
|
|
|
[AC_MSG_ERROR([installed libltdl is too old])])
|
|
|
|
fi
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AC_OUTPUT([
|
|
|
|
Makefile
|
|
|
|
base/Makefile
|
2012-04-01 09:48:52 +02:00
|
|
|
configfilecomponent/Makefile
|
|
|
|
configrpccomponent/Makefile
|
|
|
|
icinga/Makefile
|
2012-03-28 13:24:49 +02:00
|
|
|
jsonrpc/Makefile
|
|
|
|
|
|
|
|
])
|