diff options
Diffstat (limited to 'Build/source/utils/xindy/m4/ac_prog_pdflatex.m4')
-rw-r--r-- | Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 b/Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 new file mode 100644 index 00000000000..4ab0ee45291 --- /dev/null +++ b/Build/source/utils/xindy/m4/ac_prog_pdflatex.m4 @@ -0,0 +1,19 @@ +dnl @synopsis AC_PROG_PDFLATEX +dnl +dnl This macro test if pdflatex is installed. If pdflatex is installed, +dnl it set $pdflatex to the right value +dnl +dnl @category LaTeX +dnl @author Mathieu Boretti <boretti@bss-network.com> +dnl @version 2005-01-21 +dnl @license GPLWithACException + +AC_DEFUN([AC_PROG_PDFLATEX],[ +AC_CHECK_PROGS(pdflatex,[pdflatex],no) +export pdflatex; +if test $pdflatex = "no" ; +then + AC_MSG_ERROR([Unable to find a PDFLaTeX application]); +fi +AC_SUBST(pdflatex) +]) |