summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--configure.ac7
2 files changed, 13 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 394d8d80..26580a5d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
telepathy-salut 0.5.0 (UNRELEASED)
==================================
+Dependencies:
+
+ * xmldiff is now a required dependency otherwise the gibber tests
+ fail. It has always been required but it was never checked at
+ configure time.
+
telepathy-salut 0.4.0 (2010-09-06)
===================================
diff --git a/configure.ac b/configure.ac
index 0ddfa53c..b26a8f5c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -87,6 +87,13 @@ if test -z "$XSLTPROC"; then
AC_MSG_ERROR([xsltproc (from the libxslt source package) is required])
fi
+dnl check for xmldiff
+XMLDIFF=
+AC_CHECK_PROGS([XMLDIFF], [xmldiff])
+if test -z "$XMLDIFF"; then
+ AC_MSG_ERROR([xmldiff is required for the gibber tests])
+fi
+
AM_PATH_PYTHON([2.5])
# Check for a python >= 2.5 with twisted to run python tests