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