From 42caeeeb0e66f70bebed8e5c1e52a1ed7479af15 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 25 Mar 2013 09:28:17 +0100 Subject: [PATCH] Check for Libxslt support PAZ-862 --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index 93812df..e30ed52 100644 --- a/configure.ac +++ b/configure.ac @@ -28,6 +28,11 @@ YAZ_INIT([static icu],[4.2.40]) if test -z "$YAZLIB"; then AC_MSG_ERROR([YAZ development libraries missing]) fi +case $YAZINC in + *YAZ_HAVE_XSLT=1*) ;; + *) AC_MSG_ERROR([YAZ not compiled with Libxslt support]) ;; +esac + YAZ_DOC AC_SEARCH_LIBS([log],[m]) -- 1.7.10.4