2003-02-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configure.ac: Unconditionally check for epstopdf and texi2pdf.
This commit is contained in:
Ralf Corsepius
2003-02-15 06:09:43 +00:00
parent fb5bfdc4bc
commit 21595c79b3
2 changed files with 14 additions and 7 deletions

View File

@@ -1,3 +1,7 @@
2003-02-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Unconditionally check for epstopdf and texi2pdf.
2003-01-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* index.html.in: Fix duplicate c4x entry.

View File

@@ -82,13 +82,16 @@ AM_CONDITIONAL(GS,test x"$GS" != x"")
AC_CHECK_PROGS(TEXI2DVI,texi2dvi)
AM_CONDITIONAL(TEXI2DVI,test x"$TEXI2DVI" != x"")
if test "$enable_pdf" = "yes"; then
AC_CHECK_PROGS(EPSTOPDF,epstopdf)
AM_CONDITIONAL(EPSTOPDF,test x"$EPSTOPDF" != x"")
AC_CHECK_PROGS(TEXI2PDF,texi2pdf)
AM_CONDITIONAL(TEXI2PDF,test x"$TEXI2PDF" != x"")
fi
AC_CHECK_PROGS(EPSTOPDF,epstopdf)
AM_CONDITIONAL(EPSTOPDF,
test "$enable_pdf" = "yes" \
&& test x"$EPSTOPDF" != x"" )
AC_CHECK_PROGS(TEXI2PDF,texi2pdf)
AM_CONDITIONAL(TEXI2PDF,
test "$enable_pdf" = "yes" \
&& test x"$TEXI2PDF" != x"")
AM_CONDITIONAL(USE_HTML,
test "$enable_html" = "yes" \