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