| Download M4 Source | Macro Index Page |
AC_PROG_LATEX
This macro test if latex is installed. If latex is installed, it set $latex to the right value
Mathieu Boretti <boretti@bss-network.com>
2005-01-21
AC_DEFUN([AC_PROG_LATEX],[
AC_CHECK_PROGS(latex,[latex elatex lambda],no)
export latex;
if test $latex = "no" ;
then
AC_MSG_ERROR([Unable to find a LaTeX application]);
fi
AC_SUBST(latex)
])