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