Displaying 5 results from an estimated 5 matches for "5208e491f".
2017 Sep 20
0
[PATCH v2 2/6] common/mlstdutils: Remove unused Libdir module.
...e.in
/common/mlstdutils/.depend
/common/mlstdutils/bytes.ml
/common/mlstdutils/guestfs_config.ml
-/common/mlstdutils/libdir.ml
/common/mlstdutils/oUnit-*
/common/mlstdutils/std_utils_tests
/common/mlutils/.depend
diff --git a/common/mlstdutils/Makefile.am b/common/mlstdutils/Makefile.am
index 5208e491f..2376ac6a6 100644
--- a/common/mlstdutils/Makefile.am
+++ b/common/mlstdutils/Makefile.am
@@ -35,7 +35,6 @@ endif
SOURCES_ML += \
guestfs_config.ml \
- libdir.ml \
stringMap.ml \
stringSet.ml \
std_utils.ml
@@ -97,13 +96,6 @@ mlstdutils.cmxa: $(XOBJECTS)
$(OCAMLFIND) ocamlopt $(OCAMLPA...
2017 Sep 20
8
[PATCH v2 0/6] Fix OCaml dependencies.
v1 -> v2:
- Fixed everything mentioned in patch review.
- Libdir module is removed as a separate commit.
Rich.
2017 Aug 08
3
[PATCH] build: Add a common script for generating OCaml dependencies correctly.
...rcdir)/,$(builddir)/,g' | \
- sort > $@-t
- mv $@-t $@
-
+# OCaml dependencies.
+.depend: *.mli *.ml
+ $(top_builddir)/ocaml-dep.sh $^
-include .depend
endif
-.PHONY: depend docs
+.PHONY: docs
diff --git a/common/mlstdutils/Makefile.am b/common/mlstdutils/Makefile.am
index ccf7c6884..5208e491f 100644
--- a/common/mlstdutils/Makefile.am
+++ b/common/mlstdutils/Makefile.am
@@ -147,18 +147,9 @@ endif
check-valgrind:
$(MAKE) VG="@VG@" check
-# Dependencies.
-depend: .depend
-
-.depend: $(wildcard $(abs_srcdir)/*.mli) $(wildcard $(abs_srcdir)/*.ml)
- rm -f $@ $@-t
- $(OCAMLFIND...
2017 Sep 18
0
[PATCH 2/5] Make sure every *.ml file has a corresponding *.mli file.
...+ | No_Key
+ | Fingerprint of string
+ | KeyFile of string
+and revision =
+ | Rev_int of int
+ | Rev_string of string
+
+val string_of_revision : revision -> string
+(** Convert a {!revision} into a string. *)
diff --git a/common/mlstdutils/Makefile.am b/common/mlstdutils/Makefile.am
index 5208e491f..bd745859e 100644
--- a/common/mlstdutils/Makefile.am
+++ b/common/mlstdutils/Makefile.am
@@ -23,6 +23,8 @@ EXTRA_DIST = \
std_utils_tests.ml
SOURCES_MLI = \
+ guestfs_config.mli \
+ libdir.mli \
std_utils.mli \
stringMap.mli \
stringSet.mli
diff --git a/common/mlstdutils/guestfs_config....
2017 Sep 18
6
[PATCH 0/5] Fix OCaml dependencies.
This works reliably for me ...
Rich.