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