Imported Upstream version 2.7.3

This commit is contained in:
Arnaud Quette 2015-04-30 15:53:36 +02:00
parent a356b56d11
commit fd413a3168
283 changed files with 14978 additions and 6511 deletions

View file

@ -35,6 +35,25 @@ if test -z "${nut_have_asciidoc_seen}"; then
AC_MSG_RESULT(${DBLATEX_VERSION} found)
fi
dnl FIXME check for xsltproc, xmlllint, etc for chunked HTML and man pages
AC_PATH_PROGS([XSLTPROC], [xsltproc])
if test -n "${XSLTPROC}"; then
AC_MSG_CHECKING([for xsltproc version])
XSLTPROC_VERSION="`${XSLTPROC} --version 2>/dev/null`"
dnl strip 'xsltproc version ' from version string
XSLTPROC_VERSION="${XSLTPROC_VERSION##* }"
AC_MSG_RESULT(${XSLTPROC_VERSION} found)
fi
AC_PATH_PROGS([XMLLINT], [xmllint])
if test -n "${XMLLINT}"; then
AC_MSG_CHECKING([for xmllint version])
XMLLINT_VERSION="`${XMLLINT} --version 2>/dev/null`"
dnl strip 'xmllint version ' from version string
XMLLINT_VERSION="${XMLLINT_VERSION##* }"
AC_MSG_RESULT(${XMLLINT_VERSION} found)
fi
AC_PATH_PROGS([SOURCE_HIGHLIGHT], [source-highlight])
fi
])