mirror of https://github.com/Icinga/icinga2.git
60 lines
1.1 KiB
Plaintext
60 lines
1.1 KiB
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
dnl Created by Anjuta application wizard.
|
|
|
|
AC_INIT(icinga, 2.0)
|
|
|
|
AC_CONFIG_AUX_DIR([m4])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AM_INIT_AUTOMAKE([1.11])
|
|
|
|
m4_include([m4/ax_cxx_gcc_abi_demangle.m4])
|
|
m4_include([m4/ax_check_compile_flag.m4])
|
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
AC_PROG_CXX
|
|
AX_CXX_GCC_ABI_DEMANGLE
|
|
|
|
AC_CHECK_LIB(ssl, SSL_new)
|
|
AC_CHECK_LIB(crypto, X509_NAME_oneline)
|
|
AC_CHECK_LIB(eay32, X509_NAME_oneline)
|
|
|
|
AX_CHECK_COMPILE_FLAG([-std=c++0x], [have_cxx11_support=yes])
|
|
|
|
if test "$have_cxx11_support" = "yes"; then
|
|
CXXFLAGS="$CXXFLAGS -std=c++0x"
|
|
AC_DEFINE(HAVE_CXX11, 1,
|
|
[define if the compiler supports C++11])
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
LT_INIT
|
|
LT_CONFIG_LTDL_DIR([ltdl])
|
|
LTDL_INIT
|
|
|
|
if test "x$with_included_ltdl" != "xyes"; then
|
|
AC_CHECK_LIB([ltdl], [lt_dladvise_init],
|
|
[],
|
|
[AC_MSG_ERROR([installed libltdl is too old])])
|
|
fi
|
|
|
|
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
base/Makefile
|
|
cJSON/Makefile
|
|
components/Makefile
|
|
components/configfile/Makefile
|
|
components/configrpc/Makefile
|
|
components/demo/Makefile
|
|
icinga/Makefile
|
|
icinga-app/Makefile
|
|
jsonrpc/Makefile
|
|
|
|
])
|