AC_PROG_BIBTEX ,
2006年07月16日
Mathieu Boretti <boretti@eig.unige.ch>
GPLWithACException
This program is free software; you can
redistribute it and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation. As a special exception, the respective
Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify
the configure scripts that are the output of Autoconf when processing the Macro. You
need not follow the terms of the
GNU General Public License when using or distributing such scripts
cryp.to ac-archive's Obsoleted (obsoleted)
obsoleted Replaced by the newer ACLTX_XXX set of macros.
This macro test if bibtex is installed. If bibtex is installed, it set $bibtex to the right value
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) ])