Download M4 Source Macro Index Page

ac_prog_fig2dev

Obsolete Macro

Replaced by VL_PROG_FIG2DEV.

Synopsis

AC_PROG_FIG2DEV

Description

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

Author

Mathieu Boretti <boretti@bss-network.com>

Last Modified

2005-01-25

M4 Source Code

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