Skip to content
Snippets Groups Projects
Commit c5eb7606 authored by Benjamin Faigle's avatar Benjamin Faigle
Browse files

no compilation of handbook when no latex installed on system

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@4947 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 47215a71
No related branches found
No related tags found
No related merge requests found
...@@ -9,10 +9,11 @@ AM_CONFIG_HEADER([config.h]) ...@@ -9,10 +9,11 @@ AM_CONFIG_HEADER([config.h])
AC_CHECK_PROGS([TEX4HT], [tex4ht], [true]) AC_CHECK_PROGS([TEX4HT], [tex4ht], [true])
AC_CHECK_PROGS([MK4HT], [mk4ht], [true]) AC_CHECK_PROGS([MK4HT], [mk4ht], [true])
AC_CHECK_PROGS([T4HT], [t4ht], [true]) AC_CHECK_PROGS([T4HT], [t4ht], [true])
AC_CHECK_PROGS([LATEX], [latex], [true])
AM_CONDITIONAL([TEX4HT], [test "x$TEX4HT" != xtrue]) AM_CONDITIONAL([TEX4HT], [test "x$TEX4HT" != xtrue])
AC_CHECK_PROGS([CONVERT], [convert], [false]) AC_CHECK_PROGS([CONVERT], [convert], [false])
AM_CONDITIONAL([CONVERT], [test "x$CONVERT" != xfalse]) AM_CONDITIONAL([CONVERT], [test "x$CONVERT" != xfalse])
AM_CONDITIONAL([BUILD_HANDBOOK], [test -a "stamp-vc"]) AM_CONDITIONAL([BUILD_HANDBOOK], [test -a "stamp-vc" -a "x$LATEX" != xfalse])
AC_CHECK_HEADER([valgrind/memcheck.h], AC_CHECK_HEADER([valgrind/memcheck.h],
[HAVE_VALGRIND_H="1"], [HAVE_VALGRIND_H="1"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment