Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
cbdbafbe
Commit
cbdbafbe
authored
Jul 25, 2013
by
Mukund Sivaraman
Browse files
[3067] Detect if elinks exists before trying to use it to generate docs
parent
f0b494fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
cbdbafbe
...
...
@@ -1132,6 +1132,11 @@ if test "x$enable_generate_docs" != xno ; then
fi
AC_MSG_RESULT(yes)
fi
AC_PATH_PROG([ELINKS], [elinks])
if test -z "$ELINKS"; then
AC_MSG_ERROR("elinks not found; it is required for --enable-generate-docs")
fi
fi
...
...
doc/guide/Makefile.am
View file @
cbdbafbe
...
...
@@ -21,10 +21,8 @@ bind10-guide.html: bind10-guide.xml
http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl
\
$(srcdir)
/bind10-guide.xml
HTML2TXT
=
elinks
-dump
-no-numbering
-no-references
bind10-guide.txt
:
bind10-guide.html
$(HTML2TXT)
bind10-guide.html
>
$@
@
ELINKS@
-dump
-no-numbering
-no-references
bind10-guide.html
>
$@
bind10-messages.html
:
bind10-messages.xml
@
XSLTPROC@
--novalid
--xinclude
--nonet
\
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment