summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2013-10-24 13:22:19 +0100
committerH. Peter Anvin <hpa@zytor.com>2013-10-24 13:22:19 +0100
commitd089c2251ba82f363ae1332c34ef6e61bb0cd3aa (patch)
treeec7beb99fd0ad5043cb25ea9bc6bb5e10e16ac43 /configure.in
parentf9f8017ea1fab40bf0fcd3da63d3eae2f9b43a94 (diff)
downloadnasm-d089c2251ba82f363ae1332c34ef6e61bb0cd3aa.tar.gz
nasm-d089c2251ba82f363ae1332c34ef6e61bb0cd3aa.tar.bz2
nasm-d089c2251ba82f363ae1332c34ef6e61bb0cd3aa.zip
Revert "build: Include pregenerated nasm manpages"
This reverts commit 99427bdb6c85c812665f6d7b36ac520a631c5b23. We don't include generated files in the repository, instead we should pregenerate them for the tarball generation, just as we do for the Perl-generated files. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index bd5df18..8571973 100644
--- a/configure.in
+++ b/configure.in
@@ -68,10 +68,20 @@ PA_ADD_CFLAGS([-pedantic])
dnl Look for programs...
AC_CHECK_PROGS(NROFF, nroff, false)
+AC_CHECK_PROGS(ASCIIDOC, asciidoc, false)
+AC_CHECK_PROGS(XMLTO, xmlto, false)
AC_CHECK_PROGS(ACRODIST, acrodist, false)
AC_CHECK_PROGS(PS2PDF, ps2pdf, false)
AC_CHECK_PROGS(PSTOPDF, pstopdf, false)
+dnl Check for progs needed for manpage generation
+if test $ASCIIDOC = false; then
+ AC_MSG_WARN([No acsciidoc package found])
+fi
+if test $XMLTO = false; then
+ AC_MSG_WARN([No xmlto package found])
+fi
+
dnl Checks for header files.
AC_HEADER_STDC
if test $ac_cv_header_stdc = no; then