Re: [Libguestfs] [PATCH 3/4] ocaml: Use automake to build the C part of the bindings.

2012-01-18 Thread Richard W.M. Jones
On Wed, Jan 18, 2012 at 05:15:16PM +0100, Jim Meyering wrote: > Richard W.M. Jones wrote: > > By arranging the C part of the bindings into a library, we can get > > automake to build it instead of using $(CC) directly. > > > diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am > ... > > -AM_CPPFLAGS

Re: [Libguestfs] [PATCH 3/4] ocaml: Use automake to build the C part of the bindings.

2012-01-18 Thread Jim Meyering
Richard W.M. Jones wrote: > By arranging the C part of the bindings into a library, we can get > automake to build it instead of using $(CC) directly. > diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am ... > -AM_CPPFLAGS = -I$(top_builddir) -I$(OCAMLLIB) -I$(top_srcdir)/ocaml \ > - -I$(top_srcd

[Libguestfs] [PATCH 3/4] ocaml: Use automake to build the C part of the bindings.

2012-01-18 Thread Richard W.M. Jones
From: "Richard W.M. Jones" By arranging the C part of the bindings into a library, we can get automake to build it instead of using $(CC) directly. --- ocaml/Makefile.am | 28 +++- 1 files changed, 15 insertions(+), 13 deletions(-) diff --git a/ocaml/Makefile.am b/ocam