search for: mlnbd

Displaying 2 results from an estimated 2 matches for "mlnbd".

Did you mean: lnbd
2019 Jun 15
2
[libnbd PATCH] build: Fix OCaml build on Fedora 29
...ndex 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 HAVE_OCAMLOPT noinst_DATA += mlnbd.cmxa -- 2.20.1
2019 Jun 27
1
[libnbd PATCH] maint: Use $(NULL) for all Makefile.am macro lists
...cdir)/ocaml \ -I$(top_srcdir)/include \ - -DCAML_NAME_SPACE + -DCAML_NAME_SPACE \ + $(NULL) libnbdocaml_a_CFLAGS = \ $(WARNINGS_CFLAGS) \ - -fPIC + -fPIC \ + $(NULL) libnbdocaml_a_SOURCES = \ nbd-c.c \ nbd-c.h \ buffer.c \ handle.c \ - helpers.c + helpers.c \ + $(NULL) %.bc: %.cmo mlnbd.cma $(top_builddir)/libtool -dlopen $(top_builddir)/lib/.libs/libnbd.la --mode=execute \ diff --git a/ocaml/examples/Makefile.am b/ocaml/examples/Makefile.am index 6488f62..7867e14 100644 --- a/ocaml/examples/Makefile.am +++ b/ocaml/examples/Makefile.am @@ -19,7 +19,8 @@ include $(top_srcdir)/sub...