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