blob: 6775e6db94e9780f3bb30cb8e3eb16ff983467e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
AC_INIT(global.ent)
AC_PATH_PROG(XSLTPROC, xsltproc)
if test "x$XSLTPROC" = x; then
AC_MSG_ERROR("xsltproc is required")
fi
AC_PATH_PROG(PDFLATEX, pdflatex)
if test "x$PDFLATEX" = x; then
AC_MSG_ERROR("pdflatex is required")
fi
DOC_BUILD_DATE=`date '+%d-%m-%Y'`
AC_SUBST(DOC_BUILD_DATE)
AC_OUTPUT( Makefile )
|