File: ac_prog_latex2html.m4

package info (click to toggle)
autoconf-archive 20060312-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,180 kB
  • ctags: 13
  • sloc: sh: 455; makefile: 44
file content (19 lines) | stat: -rw-r--r-- 503 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
dnl @synopsis AC_PROG_LATEX2HTML
dnl
dnl This macro test if latex2html is installed. If latex2html is
dnl installed, it set $latex2html 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_LATEX2HTML],[
AC_CHECK_PROGS(latex2html,[latex2html],no)
export latex2html;
if test $latex2html = "no" ;
then
	AC_MSG_ERROR([Unable to find a LaTeX2html application]);
fi
AC_SUBST(latex2html)
])