dnl @synopsis AC_PROG_MAKEINDEX dnl dnl This macro test if makeindex is installed. If makeindex is dnl installed, it set $makeindex to the right value dnl dnl @category InstalledPackages dnl @category LaTeX dnl @author Mathieu Boretti dnl @version 2005-01-21 dnl @license GPLWithACException AC_DEFUN([AC_PROG_MAKEINDEX],[ AC_CHECK_PROGS(makeindex,makeindex,no) export makeindex; if test $makeindex = "no" ; then AC_MSG_ERROR([Unable to find a MakeIndex application]); fi AC_SUBST(makeindex) ])