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
Guilhem Saurel
hpp-doc
Commits
6d24d56a
Commit
6d24d56a
authored
Apr 19, 2010
by
florent
Browse files
Check for executable dot
* configure.ac: AC_CHECK_PROG.
parent
56f37e6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
6d24d56a
...
...
@@ -32,6 +32,12 @@ JRL_PROG_ASCIIDOC([ASCIIDOC], [8.2.5])
# Search for pkg-config.
PKG_PROG_PKG_CONFIG
# Check that executable dot is installed
AC_CHECK_PROG([dot_found], [dot], [true], [false])
if test $dot_found = false; then
echo 'dot not found, install package graphviz and try to run configure again'
exit -1
fi
# Macro that search for a package's documentation and
# generate the corresponding link to the ``main.html'' file
...
...
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