search for: 9c73a2d

Displaying 2 results from an estimated 2 matches for "9c73a2d".

Did you mean: 9173add
2009 Nov 12
1
[PATCH libguestfs] build: revive the ocaml package tests
...libguestfs] build: revive the ocaml package tests * autogen.sh: Generalize the ocaml-package-existence test. Remove the git-related part of the old test. --- autogen.sh | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/autogen.sh b/autogen.sh index 9c73a2d..b31ec7b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -42,6 +42,32 @@ if [ ! -z "$BUILDDIR" ]; then CONFIGUREDIR=.. fi +# Ensure that an ocaml package is present for build-from sources. +# This is *not* for anything that is required at configure-time +# when configure is run from a...
2009 Nov 10
1
[PATCH libguestfs] build: die early if we lack ocaml, ocamlfind or ocaml-xml-light
...e lack ocaml, ocamlfind or ocaml-xml-light * autogen.sh: Ensure that we fail very early when not building from a tarball and when one of those is not installed. --- autogen.sh | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/autogen.sh b/autogen.sh index 9c73a2d..aff17f9 100755 --- a/autogen.sh +++ b/autogen.sh @@ -42,6 +42,25 @@ if [ ! -z "$BUILDDIR" ]; then CONFIGUREDIR=.. fi +# Ensure that an ocaml package is present for build-from sources. +# This is *not* for anything that is required at configure-time +# when configure is run from a...