From b653135b619fedf74da824239298125eaa71066c Mon Sep 17 00:00:00 2001 From: Eugeniy Meshcheryakov Date: Thu, 21 Jan 2010 14:52:09 +0100 Subject: Use html-nochunks output instead of txt to test for stringparam support in xmlto txt output requires additional build dependencies (w3m or similar browser). --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 36f23374..2ec625d3 100644 --- a/configure.ac +++ b/configure.ac @@ -249,14 +249,14 @@ EOF if test "x${have_xmlto}" == "xyes"; then AC_MSG_CHECKING([for xmlto --stringparam support]) - xmlto --stringparam man.authors.section.enabled=0 txt conftest.xml >/dev/null 2>&1 + xmlto --stringparam man.authors.section.enabled=0 html-nochunks conftest.xml >/dev/null 2>&1 if test $? == 0; then have_xmlto_stringparam="yes" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi - rm -f conftest.txt + rm -f conftest.html fi AM_CONDITIONAL([XMLTO_STRINGPARAM], [test "$have_xmlto_stringparam" == "yes"]) -- cgit