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