diff options
author | Andrei Pavel <andrei@isc.org> | 2023-10-03 15:40:33 +0200 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2023-10-06 09:07:14 +0200 |
commit | 56443680d07fad6b100ab5a52cefe86dcdb03091 (patch) | |
tree | 071de24fd7232aa0d10f5501819a0c6b3622e10e /configure.ac | |
parent | [#2750] convert KB diagram into ascii (diff) | |
download | kea-56443680d07fad6b100ab5a52cefe86dcdb03091.tar.xz kea-56443680d07fad6b100ab5a52cefe86dcdb03091.zip |
[#2750] change xq to xmllint and check if in path
- also make makefile rules in doc/sphinx/uml silent to make the
potential warning visible
- also remove trailing spaces automatically from *.atxt files
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 346a36cf61..4d554da8e9 100644 --- a/configure.ac +++ b/configure.ac @@ -1383,6 +1383,10 @@ AM_CONDITIONAL(HAVE_ASCIIDOC, test "x$ASCIIDOC" != "xno") AC_PATH_PROG(PLANTUML, plantuml, no) AM_CONDITIONAL(HAVE_PLANTUML, test "x$PLANTUML" != "xno") +# Check for xmllint. +AC_PATH_PROG(XMLLINT, xmllint, no) +AM_CONDITIONAL(HAVE_XMLLINT, test "x$XMLLINT" != "xno") + # Check for valgrind AC_PATH_PROG(VALGRIND, valgrind, no) AM_CONDITIONAL(HAVE_VALGRIND, test "x$VALGRIND" != "xno") |