diff options
author | Rob Austein <sra@hactrn.net> | 2013-05-07 23:24:03 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-05-07 23:24:03 +0000 |
commit | dcf11b021f96e8aae940e2f9396f864e928882e1 (patch) | |
tree | 0ef62613f7395473a9cb4de3bfc56e3ea1e5b9aa | |
parent | 61f1084510d3999d864a181e2d39e894458025bc (diff) |
Require lxml, don't just test for it.
svn path=/trunk/; revision=5331
-rwxr-xr-x | configure | 6 | ||||
-rw-r--r-- | configure.ac | 5 |
2 files changed, 11 insertions, 0 deletions
@@ -4731,6 +4731,12 @@ case $enable_ca_tools in { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: I can't find Python.h. Python sources are required to build the CA tools." >&5 $as_echo "$as_me: WARNING: I can't find Python.h. Python sources are required to build the CA tools." >&2;} fi + if test $have_lxml = no + then + ok=no + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The RPKI tools require the Python LXML module." >&5 +$as_echo "$as_me: WARNING: The RPKI tools require the Python LXML module." >&2;} + fi if test $have_acceptable_django = no then ok=no diff --git a/configure.ac b/configure.ac index e3d9954f..ca0b9bb3 100644 --- a/configure.ac +++ b/configure.ac @@ -537,6 +537,11 @@ case $enable_ca_tools in ok=no AC_MSG_WARN([I can't find Python.h. Python sources are required to build the CA tools.]) fi + if test $have_lxml = no + then + ok=no + AC_MSG_WARN([The RPKI tools require the Python LXML module.]) + fi if test $have_acceptable_django = no then ok=no |