summaryrefslogtreecommitdiff
path: root/Build/source/utils/xindy/xindy-2.5.0/m4/ac_prog_latex.m4
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-09-15 10:16:13 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-09-15 10:16:13 +0000
commit223d9c785f8ec2bb0a72b410077b7db78a938969 (patch)
tree72395bebf8e8c2508b2a4e57fc00649ec33be660 /Build/source/utils/xindy/xindy-2.5.0/m4/ac_prog_latex.m4
parent3e926073114d4f044bcc02ba243023dea4aafa97 (diff)
xindy 2.5.1
git-svn-id: svn://tug.org/texlive/trunk@35177 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy/xindy-2.5.0/m4/ac_prog_latex.m4')
-rw-r--r--Build/source/utils/xindy/xindy-2.5.0/m4/ac_prog_latex.m419
1 files changed, 0 insertions, 19 deletions
diff --git a/Build/source/utils/xindy/xindy-2.5.0/m4/ac_prog_latex.m4 b/Build/source/utils/xindy/xindy-2.5.0/m4/ac_prog_latex.m4
deleted file mode 100644
index 450eaf91daf..00000000000
--- a/Build/source/utils/xindy/xindy-2.5.0/m4/ac_prog_latex.m4
+++ /dev/null
@@ -1,19 +0,0 @@
-dnl @synopsis AC_PROG_LATEX
-dnl
-dnl This macro test if latex is installed. If latex is installed, it
-dnl set $latex 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_LATEX],[
-AC_CHECK_PROGS(latex,[latex elatex lambda],no)
-export latex;
-if test $latex = "no" ;
-then
- AC_MSG_ERROR([Unable to find a LaTeX application]);
-fi
-AC_SUBST(latex)
-])