summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun McCance <shaunm@gnome.org>2011-07-09 14:02:16 -0400
committerShaun McCance <shaunm@gnome.org>2011-07-09 14:02:16 -0400
commited24f490abd02c22833817a80793262315496a41 (patch)
tree56c6e782d13af89dba8def24144df02cde6a7d4d
parent069230f35a33cc657a919b916f1769255e1e441f (diff)
downloadyelp-tools-ed24f490abd02c22833817a80793262315496a41.tar.gz
configure.ac: Check for itstool
-rw-r--r--configure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 10d7e8e..27519b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,12 @@ if [ `$XSLTPROC --version 2>&1 | head -n1 | cut -d' ' -f5` -lt 10108 ]; then
AC_MSG_ERROR([xsltproc too old; 1.1.8 required])
fi
-PKG_CHECK_MODULES(GNOME_DOC_UTILS,
+AC_CHECK_PROG(ITSTOOL, itstool, itstool)
+if test x"$ITSTOOL" = x; then
+ AC_MSG_ERROR([itstool not found])
+fi
+
+PKG_CHECK_MODULES(YELP_XSL,
[
yelp-xsl
])