Files
poky/handbook/poky-doc-tools/configure.ac
Richard Purdie 882e9cd2af Add Poky handbook
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3865 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-02-26 11:31:34 +00:00

27 lines
674 B
Plaintext

AC_PREREQ(2.53)
AC_INIT(poky-doc-tools, 0.1, http://o-hand.com)
AM_INIT_AUTOMAKE()
AC_PATH_PROG(HAVE_XSLTPROC, xsltproc, no)
if test x$HAVE_XSLTPROC = xno; then
AC_MSG_ERROR([Required xsltproc program not found])
fi
AC_PATH_PROG(HAVE_FOP, fop, no)
if test x$HAVE_FOP = xno; then
AC_MSG_ERROR([Required fop program not found])
fi
AC_CHECK_FILE([/usr/share/xml/docbook/stylesheet/nwalsh/template/titlepage.xsl],HAVE_NWALSH="yes", HAVE_NWALSH="no")
if test x$HAVE_FOP = xno; then
AC_MSG_ERROR([Required 'nwalsh' docbook stylesheets not found])
fi
AC_OUTPUT([
Makefile
common/Makefile
])
echo "
== poky-doc-tools $VERSION configured successfully. ==
"