From 341693be9baf2a1039f1e8006d0c1a1bdb93f1d7 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 6 Jul 2006 14:02:20 +0000 Subject: [PATCH] Omit check for Libxslt. YAZ does it for us --- configure.ac | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/configure.ac b/configure.ac index 7f5bbd5..8b00725 100644 --- a/configure.ac +++ b/configure.ac @@ -82,34 +82,6 @@ if test -z "$YAZPPLIB"; then fi YAZ_DOC -## libxslt checks -AC_SUBST(XSLT_LIBS) -AC_SUBST(XSLT_CFLAGS) -xsltdir=default -AC_ARG_WITH(xslt,[[ --with-xslt[=PREFIX] use libxslt in PREFIX]],xsltdir=$withval) -if test "$xsltdir" = "yes" -o "$xsltdir" = "default"; then - for d in /usr /usr/local; do - if test -x $d/bin/xslt-config; then - xsltdir=$d - fi - done -fi -if test "$xsltdir" != "no"; then - AC_MSG_CHECKING(for libXSLT) - if test -x $xsltdir/bin/xslt-config; then - XSLT_LIBS=`$xsltdir/bin/xslt-config --libs` - XSLT_CFLAGS=`$xsltdir/bin/xslt-config --cflags` - XSLT_VER=`$xsltdir/bin/xslt-config --version` - AC_MSG_RESULT($XSLT_VER) - AC_DEFINE([HAVE_XSLT],[1], - [Define to 1 if you have libxslt installed]) - else - AC_MSG_RESULT(Not found) - AC_MSG_ERROR([libxslt required.]) - fi -fi - - # Checks for header files. ##AC_HEADER_STDC ##AC_HEADER_SYS_WAIT -- 1.7.10.4