Martin Kletzander
2021-Mar-30 14:52 UTC
[Libguestfs] [libnbd PATCH 0/2] Miscellaneous tiny fixes
Just a two things I found out when trying to set up the CI. Martin Kletzander (2): Fix reporting of NBD URI support by configure Add an extra info for ocamlfind dependency configure.ac | 2 +- generator/Makefile.am | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) -- 2.31.1
Martin Kletzander
2021-Mar-30 14:52 UTC
[Libguestfs] [libnbd PATCH 1/2] Fix reporting of NBD URI support by configure
Signed-off-by: Martin Kletzander <mkletzan at redhat.com> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0135c12ec04d..d65b31a63077 100644 --- a/configure.ac +++ b/configure.ac @@ -548,7 +548,7 @@ echo feature "TLS support ............................ " \ test "x$HAVE_GNUTLS_TRUE" = "x" feature "NBD URI support ........................ " \ - test "x$LIBXML2_LIBS" != "x" + test "x$HAVE_LIBXML2_TRUE" = "x" feature "FUSE support ........................... " \ test "x$HAVE_FUSE_TRUE" = "x" feature "Manual pages ........................... " \ -- 2.31.1
Martin Kletzander
2021-Mar-30 14:52 UTC
[Libguestfs] [libnbd PATCH 2/2] Add an extra info for ocamlfind dependency
Signed-off-by: Martin Kletzander <mkletzan at redhat.com> --- generator/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/generator/Makefile.am b/generator/Makefile.am index 594d23cf53fa..65935e6e330f 100644 --- a/generator/Makefile.am +++ b/generator/Makefile.am @@ -96,6 +96,7 @@ stamp-generator: echo "Source files are missing from your build."; \ echo; \ echo "Install the OCaml bytecode compiler (the program called ?ocamlc?)"; \ + echo "and OCaml findlib (program called ocamlfind)"; \ echo "and rerun ./configure && make"; \ echo; \ echo " *** *** ***"; \ -- 2.31.1