|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 5 of 7] ocaml: add dependency to module metadata
# HG changeset patch
# User root@xxxxxxxxxxxxxxxxxxxxx
# Date 1290077186 18000
# Node ID ac5b6ac9ec0d6fafed037d89a9802c542a77b5ce
# Parent 05cf9251ac48e7abeabdcf3c5a164b276bf393e9
ocaml: add dependency to module metadata.
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
diff -r 05cf9251ac48 -r ac5b6ac9ec0d tools/ocaml/libs/eventchn/META.in
--- a/tools/ocaml/libs/eventchn/META.in Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/ocaml/libs/eventchn/META.in Thu Nov 18 05:46:26 2010 -0500
@@ -1,4 +1,5 @@
version = "@VERSION@"
description = "Eventchn interface extension"
+requires = "unix"
archive(byte) = "eventchn.cma"
archive(native) = "eventchn.cmxa"
diff -r 05cf9251ac48 -r ac5b6ac9ec0d tools/ocaml/libs/log/META.in
--- a/tools/ocaml/libs/log/META.in Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/ocaml/libs/log/META.in Thu Nov 18 05:46:26 2010 -0500
@@ -1,4 +1,5 @@
version = "@VERSION@"
description = "Log - logging library"
+requires = "unix"
archive(byte) = "log.cma"
archive(native) = "log.cmxa"
diff -r 05cf9251ac48 -r ac5b6ac9ec0d tools/ocaml/libs/xb/META.in
--- a/tools/ocaml/libs/xb/META.in Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/ocaml/libs/xb/META.in Thu Nov 18 05:46:26 2010 -0500
@@ -1,4 +1,5 @@
version = "@VERSION@"
description = "XenBus Interface"
+requires = "unix,mmap"
archive(byte) = "xb.cma"
archive(native) = "xb.cmxa"
diff -r 05cf9251ac48 -r ac5b6ac9ec0d tools/ocaml/libs/xc/META.in
--- a/tools/ocaml/libs/xc/META.in Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/ocaml/libs/xc/META.in Thu Nov 18 05:46:26 2010 -0500
@@ -1,4 +1,5 @@
version = "@VERSION@"
description = "Xen Control Interface"
+requires = "mmap,uuid"
archive(byte) = "xc.cma"
archive(native) = "xc.cmxa"
diff -r 05cf9251ac48 -r ac5b6ac9ec0d tools/ocaml/libs/xs/META.in
--- a/tools/ocaml/libs/xs/META.in Thu Nov 18 05:46:26 2010 -0500
+++ b/tools/ocaml/libs/xs/META.in Thu Nov 18 05:46:26 2010 -0500
@@ -1,4 +1,5 @@
version = "@VERSION@"
description = "XenStore Interface"
+requires = "unix,xb"
archive(byte) = "xs.cma"
archive(native) = "xs.cmxa"
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|