Download M4 Source Macro Index Page

ac_prog_latex2man

Synopsis

AC_PROG_LATEX2MAN

Description

This macro test if latex2man is installed. If latex2man is installed, it set $latex2man to the right value

Author

Mathieu Boretti <boretti@bss-network.com>

Last Modified

2005-01-21

M4 Source Code

AC_DEFUN([AC_PROG_LATEX2MAN],[
AC_CHECK_PROGS(latex2man,[latex2man],no)
export latex2man;
if test $latex2man = "no" ;
then
        AC_MSG_ERROR([Unable to find a LaTeX2man application]);
fi
AC_SUBST(latex2man)
])