summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2015-02-07 11:45:19 -0800
committerAaron Plattner <aplattner@nvidia.com>2015-05-11 12:44:42 -0700
commit01e45a95380aafc9ea2d3662114dbde7146a8fc8 (patch)
tree60ef60a6684b3fc60551830ce05e322258301f7b
parent0962da95cdf1d87a883d1d0db7d2697d6d103348 (diff)
Remove pdflatex dependency
PDF documentation isn't enabled, so pdflatex isn't used. Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
-rw-r--r--configure.ac7
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index d659c33..fa9c2c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -56,11 +56,9 @@ AC_ARG_ENABLE(documentation, AS_HELP_STRING([--disable-documentation], [Disable
if test "x$DOCS" != xno; then
AC_CHECK_TOOL([DOXYGEN], [doxygen], [no])
AC_CHECK_TOOL([DOT], [dot], [no])
- AC_CHECK_TOOL([PDFTEX], [pdftex], [no])
else
DOXYGEN=no
DOT=no
- PDFTEX=no
fi
if test "x$DOCS" = xyes; then
if test "x$DOXYGEN" = xno; then
@@ -69,11 +67,8 @@ if test "x$DOCS" = xyes; then
if test "x$DOT" = xno; then
AC_ERROR([Documentation enabled but dot was not found in your path. Please install graphviz])
fi
- if test "x$PDFTEX" = xno; then
- AC_ERROR([Documentation enabled but pdftex was not found in your path])
- fi
fi
-AM_CONDITIONAL([ENABLE_DOCS], [test "x$DOXYGEN" != xno -a "x$DOT" != xno -a "x$PDFTEX" != xno])
+AM_CONDITIONAL([ENABLE_DOCS], [test "x$DOXYGEN" != xno -a "x$DOT" != xno])
AC_SUBST(DOXYGEN)
# Options