Displaying 2 results from an estimated 2 matches for "557151c".
2019 Jun 15
2
[libnbd PATCH] build: Fix OCaml build on Fedora 29
...Error 2
I'm not positive that this is the perfect fix, but it at least got the
build working for me, and copies from idioms in
nbdkit/plugins/ocaml/Makefile.am.
---
ocaml/Makefile.am | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am
index 0d876bb..557151c 100644
--- a/ocaml/Makefile.am
+++ b/ocaml/Makefile.am
@@ -32,6 +32,11 @@ if HAVE_OCAML
OCAMLFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) -ccopt '$(CFLAGS)'
OCAMLPACKAGES = -package unix
+NBD.cmi: NBD.mli
+ $(OCAMLC) -c $< -o $@
+
+NBD.cmo: NBD.cmi
+
noinst_DATA = mlnbd.cma META
if HA...
2019 Jun 17
0
Re: [libnbd PATCH] build: Fix OCaml build on Fedora 29
...is the perfect fix, but it at least got the
> build working for me, and copies from idioms in
> nbdkit/plugins/ocaml/Makefile.am.
> ---
> ocaml/Makefile.am | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am
> index 0d876bb..557151c 100644
> --- a/ocaml/Makefile.am
> +++ b/ocaml/Makefile.am
> @@ -32,6 +32,11 @@ if HAVE_OCAML
> OCAMLFLAGS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) -ccopt '$(CFLAGS)'
> OCAMLPACKAGES = -package unix
>
> +NBD.cmi: NBD.mli
> + $(OCAMLC) -c $< -o $@
I thnk this line...