From 51d8a8a4ac6ef6096c393fd602df34c6bf8f6366 Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Mon, 06 Apr 2009 20:27:39 +0000 Subject: better nonce generation and session credentials verification based on the patch from Chris Davies Signed-off-by: Michael Krelin --- (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 2e66fc4..515d465 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,12 @@ AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) PKG_CHECK_MODULES([MODULES],[gsoap++ openssl libconfuse],,[ AC_MSG_ERROR([one of the build dependencies isn't satisfied]) ]) +PKG_CHECK_MODULES([UUID],[uuid],[have_uuid=true],[have_uuid=false]) +AM_CONDITIONAL([HAVE_UUID],[$have_uuid]) +if $have_uuid ; then + AC_DEFINE([HAVE_LIBUUID],,[defined in presence of libuuid]) + AC_SUBST([UUID_UUID],[uuid]) +fi AC_PATH_PROG([SOAPCPP2],[soapcpp2],[false]) test "$SOAPCPP2" = "false" && AC_MSG_ERROR([no soapcpp2 tool, part of gsoap package, found.]) -- cgit v0.9.0.2