X-Git-Url: http://git.ipfire.org/?p=collecty.git;a=blobdiff_plain;f=configure.ac;h=8980c58bc9c2c1724289b2b105deeff348a135d9;hp=0d943e3a65761013c48b31c750c5383f89b0300e;hb=57797e47237d8520583d6a23049c99a7549286a5;hpb=08e390fce99ecea91d0206471544aca1527111e3 diff --git a/configure.ac b/configure.ac index 0d943e3..8980c58 100644 --- a/configure.ac +++ b/configure.ac @@ -41,6 +41,8 @@ AM_INIT_AUTOMAKE([ subdir-objects ]) AM_SILENT_RULES([yes]) +LT_PREREQ(2.2) +LT_INIT([disable-static]) IT_PROG_INTLTOOL([0.40.0]) @@ -51,13 +53,33 @@ AC_PROG_LN_S AC_PROG_MKDIR_P AC_PROG_SED +# C Compiler +AC_PROG_CC +AC_PROG_CC_C99 +AC_PROG_CC_C_O +AC_PROG_GCC_TRADITIONAL + AC_PATH_PROG([XSLTPROC], [xsltproc]) # Python AM_PATH_PYTHON([2.7]) +PKG_CHECK_MODULES([PYTHON_DEVEL], [python-${PYTHON_VERSION}]) + +# libatasmart +PKG_CHECK_MODULES([LIBATASMART], [libatasmart >= 0.19]) save_LIBS="$LIBS" +# lm-sensors +AC_CHECK_HEADERS([sensors/sensors.h sensors/errors.h]) + +LIBS= +AC_CHECK_LIB(sensors, sensors_init, [], [AC_MSG_ERROR([*** sensors library not found])]) +SENSORS_LIBS="$LIBS" +AC_SUBST(SENSORS_LIBS) + +LIBS="$save_LIBS" + # pkg-config PKG_PROG_PKG_CONFIG # This makes sure pkg.m4 is available. @@ -89,7 +111,7 @@ AC_ARG_WITH([dbussystemservicedir], ) AS_IF([test "x$with_systemd" != "xno"], - [PKG_CHECK_MODULES(systemd, [libsystemd-daemon], + [PKG_CHECK_MODULES(systemd, [libsystemd], [have_systemd=yes], [have_systemd=no])], [have_systemd=no] )