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