X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=configure.ac;h=a4f21853dc22b506164a328c5c1f5d1452c26ff9;hb=8e1ace048891876962733c3ebec3b5234d9c6c98;hp=6195d20541ccc82d9c76b3f21db8c52fe3d0d192;hpb=f0c82a82efa8c3a23cbdc507bc860e3e13807007;p=sysdb.git diff --git a/configure.ac b/configure.ac index 6195d20..a4f2185 100644 --- a/configure.ac +++ b/configure.ac @@ -184,6 +184,10 @@ if test "x$enable_strict_checks" = "xyes"; then fi AC_SUBST([STRICT_CFLAGS]) +dnl Testing. +build_testing="no" +PKG_CHECK_MODULES([CHECK], [check >= 0.9.4], [build_testing="yes"]) + AC_CHECK_HEADERS(libgen.h) dnl Check for dependencies. @@ -203,6 +207,18 @@ if test "x$with_libdbi" = "xyes"; then fi AM_CONDITIONAL([BUILD_WITH_LIBDBI], test "x$with_libdbi" = "xyes") +dnl Required for mocking FILE related functions. +orig_CFLAGS="$CFLAGS" +CFLAGS="$CFLAGS -D_GNU_SOURCE" +AC_CHECK_FUNCS([fopencookie], + [have_fopencookie="yes"], + [have_fopencookie="no (fopencookie not available)"]) +CFLAGS="$orig_CFLAGS" +AM_CONDITIONAL([BUILD_WITH_FOPENCOOKIE], test "x$have_fopencookie" = "xyes") +if test "x$have_fopencookie" = "xyes"; then + AC_DEFINE([HAVE_FOPENCOOKIE], 1) +fi + dnl Feature checks. build_documentation="yes" @@ -250,9 +266,10 @@ AC_SDB_PLUGIN([cname-dns], [yes], [canonicalize hostnames by querying DNS]) AM_CONDITIONAL([BUILD_DOCUMENTATION], test "x$build_documentation" = "xyes") +AM_CONDITIONAL([BUILD_TESTING], test "x$build_testing" = "xyes") AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile - src/liboconfig/Makefile]) + src/liboconfig/Makefile t/Makefile]) AC_OUTPUT BUILD_DATE="`date --utc '+%F %T'` (UTC)" @@ -274,6 +291,8 @@ AC_MSG_RESULT([ xmlto / xsltproc: . . . . . $have_xmlto / $have_xsltproc]) AC_MSG_RESULT() AC_MSG_RESULT([ Features:]) AC_MSG_RESULT([ documentation: . . . . . . $build_documentation]) +AC_MSG_RESULT([ unit testing: . . . . . . . $build_testing]) +AC_MSG_RESULT([ stdio mocking: . . . . . $have_fopencookie]) AC_MSG_RESULT() AC_MSG_RESULT([ Libraries:]) AC_MSG_RESULT([ libdbi: . . . . . . . . . . $with_libdbi]) @@ -290,3 +309,4 @@ AC_MSG_RESULT([This package is maintained by $PACKAGE_MAINTAINER.]) AC_MSG_RESULT([Please report bugs to $PACKAGE_BUGREPORT.]) AC_MSG_RESULT() +dnl vim: set tw=78 sw=4 ts=4 noexpandtab :