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