summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5d9c276)
raw | patch | inline | side by side (parent: 5d9c276)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Fri, 16 Dec 2011 16:34:02 +0000 (16:34 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Fri, 16 Dec 2011 16:34:02 +0000 (16:34 +0000) |
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.4/program@2242 a5681a0c-68f1-0310-ab6d-d61299d08faa
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index 40b854b1f95b16c6dc557c308ce1e4b541cd6078..b7bbe195bdb0852c0a44d9487b4ff22f3ecd3439 100644 (file)
--- a/configure.ac
+++ b/configure.ac
AC_ARG_ENABLE(rrdcgi,AS_HELP_STRING([--disable-rrdcgi],[disable building of rrdcgi]),
[],[enable_rrdcgi=yes])
+AM_CONDITIONAL(BUILD_RRDCGI,[test $enable_rrdcgi != no])
+
AC_ARG_ENABLE(rrd_graph,AS_HELP_STRING([--disable-rrd_graph],[disable all rrd_graph functions]),
[enable_rrdcgi=no],[enable_rrd_graph=yes])
dnl Checks for header files.
AC_HEADER_STDC
AC_HEADER_DIRENT
-AC_CHECK_HEADERS(langinfo.h stdint.h inttypes.h libgen.h features.h sys/stat.h sys/types.h fcntl.h fp_class.h malloc.h unistd.h ieeefp.h math.h sys/times.h sys/param.h sys/resource.h signal.h float.h stdio.h stdlib.h errno.h string.h ctype.h)
+AC_CHECK_HEADERS(tcpd.h dbi/dbi.h langinfo.h stdint.h inttypes.h libgen.h features.h sys/stat.h sys/types.h fcntl.h fp_class.h malloc.h unistd.h ieeefp.h math.h sys/times.h sys/param.h sys/resource.h signal.h float.h stdio.h stdlib.h errno.h string.h ctype.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
CONFIGURE_PART(Find 3rd-Party Libraries)
-AC_ARG_ENABLE(libdbi,AS_HELP_STRING([--disable-libdbi],[do not build in support for libdbi]),[have_libdbi=no],[
- XXX=$LIBS
- LIBS="$LIBS -ldbi -ldl"
- AC_MSG_CHECKING(for libdbi)
- AC_LINK_IFELSE(
- [AC_LANG_PROGRAM([[#include <dbi/dbi.h>]],
- [[dbi_initialize(NULL)]]
- )
- ],[AC_DEFINE(HAVE_LIBDBI,[1],[have got libdbi installed])
- AC_MSG_RESULT([yes])
- have_libdbi=yes
- ],[LIBS=$XXX
- AC_MSG_RESULT([no])
- have_libdbi=no
- ]
- )
+have_libdbi=no
+
+AC_ARG_ENABLE(libdbi,AS_HELP_STRING([--disable-libdbi],[do not build in support for libdbi]),[],[
+ AC_CHECK_LIB(dbi, dbi_initialize, [
+ LIBS="${LIBS} -ldbi -ldl"
+ AC_DEFINE(HAVE_LIBDBI,[1],[have got libdbi installed])
+ have_libdbi=yes
+ ],[],[-ldl])
])
+
AM_CONDITIONAL(BUILD_LIBDBI,[test $have_libdbi != no])
+have_libwrap=no
AC_ARG_ENABLE(libwrap,
AS_HELP_STRING([--disable-libwrap],
- [do not build in support for libwrap (tcp wrapper)]),
- [have_libwrap=no],[
- XXX=$LIBS
- LIBS="$LIBS -lwrap"
- AC_MSG_CHECKING(for libwrap)
- AC_LINK_IFELSE(
- [AC_LANG_PROGRAM([[#include <tcpd.h>]], [[hosts_access(NULL)]])
- ],[AC_DEFINE(HAVE_LIBWRAP,[1],[have got libwrap installed])
- AC_MSG_RESULT([yes])
- have_libwrap=yes
- ],[LIBS=$XXX
- AC_MSG_RESULT([no])
- have_libwrap=no
- ]
- )
-])
+ [do not build in support for libwrap (tcp wrapper)]
+ ),
+ [],
+ [
+ AC_CHECK_FUNCS(hosts_access, [],
+ AC_CHECK_LIB(wrap, hosts_access, [
+ LIBS="${LIBS} -lwrap"
+ AC_DEFINE(HAVE_LIBWRAP,[1],[have got libwrap installed])
+ have_libwrap=yes
+ ],[])
+ )
+ ]
+)
+
AM_CONDITIONAL(BUILD_LIBWRAP,[test $have_libwrap != no])
AM_CONDITIONAL(BUILD_RRDCGI,[test $enable_rrdcgi != no])