diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-03-08 21:01:52 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-03-09 03:00:59 +0100 |
commit | fca673bcd32e184a520edec2b93bc369c29ffe7d (patch) | |
tree | 857fc10508a2b083421e3cc562a8a8d69a7e02a6 /configure.in | |
parent | 4d7d1027aee2a9c98d6efe5115b61f92ebcb6924 (diff) | |
download | tor-fca673bcd32e184a520edec2b93bc369c29ffe7d.tar.gz tor-fca673bcd32e184a520edec2b93bc369c29ffe7d.zip |
Don't require asciidoc when building Tor from a tarball
If asciidoc is required, the user receives an error message telling
them about the --disable-asciidoc configure switch and the build
breaks.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.in b/configure.in index 126bc67a77..04af24163b 100644 --- a/configure.in +++ b/configure.in @@ -106,18 +106,6 @@ AC_CHECK_PROG([SED],[sed],[sed],[/bin/false]) dnl check for asciidoc and a2x AC_PATH_PROG([ASCIIDOC], [asciidoc], none) AC_PATH_PROG([A2X], [a2x], none) -AC_PATH_PROG([XSLTPROC], [xsltproc], none) -if test x$asciidoc = xtrue ; then - if test x$ASCIIDOC = xnone ; then - AC_MSG_ERROR("Couldn't find asciidoc. reconfigure with --disable-asciidoc to build without asciidoc.") - fi - if test x$A2X = xnone ; then - AC_MSG_ERROR("Couldn't find a2x. reconfigure with --disable-asciidoc to build without a2x.") - fi - if test x$XSLTPROC = xnone ; then - AC_MSG_ERROR("Couldn't find xsltproc. reconfigure with --disable-asciidoc to build without xsltproc.") - fi -fi AM_CONDITIONAL(USE_ASCIIDOC, test x$asciidoc = xtrue) |