From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH 2 of 5] ocaml: add dependency to module metadata Date: Tue, 07 Dec 2010 14:32:53 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-api-bounces-GuqFBffKawuULHF6PoxzQEEOCMrvLtNR@public.gmane.org Errors-To: xen-api-bounces-GuqFBffKawuULHF6PoxzQEEOCMrvLtNR@public.gmane.org To: xen-devel-GuqFBffKawuULHF6PoxzQEEOCMrvLtNR@public.gmane.org, xen-api-GuqFBffKawuULHF6PoxzQEEOCMrvLtNR@public.gmane.org Cc: Ian Campbell List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User root-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org # Date 1291307719 18000 # Node ID e147f32b385cdebc568992fae9ceb71d958bb169 # Parent 21d9d889ec30f6ac55267c745a1cae56c768f63b ocaml: add dependency to module metadata. Signed-off-by: Ian Campbell diff -r 21d9d889ec30 -r e147f32b385c tools/ocaml/libs/eventchn/META.in --- a/tools/ocaml/libs/eventchn/META.in Thu Dec 02 11:35:19 2010 -0500 +++ b/tools/ocaml/libs/eventchn/META.in Thu Dec 02 11:35:19 2010 -0500 @@ -1,4 +1,5 @@ version = "@VERSION@" description = "Eventchn interface extension" +requires = "unix" archive(byte) = "eventchn.cma" archive(native) = "eventchn.cmxa" diff -r 21d9d889ec30 -r e147f32b385c tools/ocaml/libs/log/META.in --- a/tools/ocaml/libs/log/META.in Thu Dec 02 11:35:19 2010 -0500 +++ b/tools/ocaml/libs/log/META.in Thu Dec 02 11:35:19 2010 -0500 @@ -1,4 +1,5 @@ version = "@VERSION@" description = "Log - logging library" +requires = "unix" archive(byte) = "log.cma" archive(native) = "log.cmxa" diff -r 21d9d889ec30 -r e147f32b385c tools/ocaml/libs/xb/META.in --- a/tools/ocaml/libs/xb/META.in Thu Dec 02 11:35:19 2010 -0500 +++ b/tools/ocaml/libs/xb/META.in Thu Dec 02 11:35:19 2010 -0500 @@ -1,4 +1,5 @@ version = "@VERSION@" description = "XenBus Interface" +requires = "unix,mmap" archive(byte) = "xb.cma" archive(native) = "xb.cmxa" diff -r 21d9d889ec30 -r e147f32b385c tools/ocaml/libs/xc/META.in --- a/tools/ocaml/libs/xc/META.in Thu Dec 02 11:35:19 2010 -0500 +++ b/tools/ocaml/libs/xc/META.in Thu Dec 02 11:35:19 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 21d9d889ec30 -r e147f32b385c tools/ocaml/libs/xs/META.in --- a/tools/ocaml/libs/xs/META.in Thu Dec 02 11:35:19 2010 -0500 +++ b/tools/ocaml/libs/xs/META.in Thu Dec 02 11:35:19 2010 -0500 @@ -1,4 +1,5 @@ version = "@VERSION@" description = "XenStore Interface" +requires = "unix,xb" archive(byte) = "xs.cma" archive(native) = "xs.cmxa"