search for: dllmlguestf

Displaying 9 results from an estimated 9 matches for "dllmlguestf".

Did you mean: dllmlguestfs
2017 Aug 10
0
Re: libguestfs binaries missing when built from source code
.../lib64/ocaml/guestfs/guestfs.cmx > /usr/lib64/ocaml/guestfs/guestfs.mli > /usr/lib64/ocaml/guestfs/libmlguestfs.a > /usr/lib64/ocaml/guestfs/mlguestfs.a > /usr/lib64/ocaml/guestfs/mlguestfs.cma > /usr/lib64/ocaml/guestfs/mlguestfs.cmxa > /usr/lib64/ocaml/stublibs/dllmlguestfs.so > /usr/lib64/ocaml/stublibs/dllmlguestfs.so.owner Those particular files are the OCaml bindings. They are only needed if you intend to write a brand new program in OCaml using guestfs (http://libguestfs.org/guestfs-ocaml.3.html). Otherwise you can remove them without any ill effect. H...
2014 Mar 23
2
Re: [PATCH] Fix building on architectures where ocamlopt is not available
* Richard W.M. Jones: > (1) Removing .NOTPARALLEL. This fails, as expected. > > (2) mlguestfs.cmxa: mlguestfs.cma -- fails > > (3) mlguestfs.cmxa: | mlguestfs.cma -- fails after a longer time I find it strange that (2) and (3) fail. > (4) The attached patch which is derived from dce94f -- this ran > without failing for 120 iterations (and still going). The patch looks
2010 Oct 27
1
[PATCH] Remove ocaml/.depend from git
ocaml/.depend is automatically generated. This patch removes it from git. --- .gitignore | 1 + ocaml/.depend | 5 ----- 2 files changed, 1 insertions(+), 5 deletions(-) delete mode 100644 ocaml/.depend -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Remove-ocaml-.depend-from-git.patch Type: text/x-patch Size: 495 bytes Desc: not available URL:
2015 Oct 24
2
[PATCH 0/2] Allow 'make install' to be run twice.
Still don't recommend you use 'make install', but here we go. Rich.
2014 Mar 03
7
[PATCH 1/4] More fixes for situations where ocamlopt is not available
...xamples/Makefile.am +++ b/ocaml/examples/Makefile.am @@ -58,16 +58,13 @@ inspect_vm: inspect_vm.ml $(OCAMLFIND) ocamlopt $(OCAMLFINDFLAGS) -package unix -linkpkg \ -warn-error A -I .. mlguestfs.cmxa $< -o $@ else - -# This avoids: -# Error: Error on dynamically loaded library: ../dllmlguestfs.so: libguestfs.so.0: cannot open shared object file: No such file or directory create_disk: create_disk.ml - $(top_builddir)/run $(OCAMLFIND) ocamlc $(OCAMLFINDFLAGS) -package unix -linkpkg \ - -warn-error A -I .. mlguestfs.cma $< -o $@ + $(OCAMLFIND) ocamlc $(OCAMLFINDFLAGS) -package...
2014 Feb 28
2
Re: enable build for ocaml bytecode
I believe this patch has now been superseded by Hilko's commit here: https://github.com/libguestfs/libguestfs/commit/f75142c577255b30f2a8e1d27baa5fd185594197 Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming blog: http://rwmj.wordpress.com Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
2014 Feb 28
6
[PATCH] Fix building on architectures where ocamlopt is not available
...guestfs.cmxa $< -o $@ @@ -56,5 +57,17 @@ create_disk: create_disk.ml inspect_vm: inspect_vm.ml $(OCAMLFIND) ocamlopt $(OCAMLFINDFLAGS) -package unix -linkpkg \ -warn-error A -I .. mlguestfs.cmxa $< -o $@ +else + +# This avoids: +# Error: Error on dynamically loaded library: ../dllmlguestfs.so: libguestfs.so.0: cannot open shared object file: No such file or directory +create_disk: create_disk.ml + $(top_builddir)/run $(OCAMLFIND) ocamlc $(OCAMLFINDFLAGS) -package unix -linkpkg \ + -warn-error A -I .. mlguestfs.cma $< -o $@ + +inspect_vm: inspect_vm.ml + $(top_builddir)/r...
2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
If the connection is not local, paths of disks will refer to the remote host, which were mistakenly handled as local paths (in the best case failing to open a non-existing disk, and in the worst case opening a different disk!). In case the disks are remote resources like ssh or ceph, nothing guarantees that the hostname can be reached from the local machine, or even that it is actually the same on
2017 Jul 07
4
[PATCH v6 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Hopefully this time ...