diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-01-18 22:15:38 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-01-27 12:13:05 +0100 |
commit | 9fe1c000b0b1a91acf605ef71a538da7b7218fe9 (patch) | |
tree | 717008dd8a0d06d0c850e0bcbb3e981a297c72f0 /configure.in | |
parent | 3efadcd0d5373cc38986cdf93d03a1d99ec8aee0 (diff) | |
download | tor-9fe1c000b0b1a91acf605ef71a538da7b7218fe9.tar.gz tor-9fe1c000b0b1a91acf605ef71a538da7b7218fe9.zip |
Allow generating documentation from asciidoc in the Makefile
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 9a96503143..44ed292d52 100644 --- a/configure.in +++ b/configure.in @@ -109,6 +109,10 @@ AC_PROG_RANLIB dnl autoconf 2.59 appears not to support AC_PROG_SED 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([SHA1SUM], [sha1sum], none) AC_PATH_PROG([OPENSSL], [openssl], none) |