Download M4 Source Macro Index Page

ac_prog_mktexpk

Synopsis

AC_PROG_MKTEXPK

Description

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

Author

Mathieu Boretti <boretti@bss-network.com>

Last Modified

2005-01-21

M4 Source Code

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)
])