Displaying 2 results from an estimated 2 matches for "53d1d6b".
2015 Feb 06
0
Re: Patchable build problems on OS X 10.10
...ot the default, so we can get away with forcing
> * people who want to try it to have a reasonably new version of
I pushed this hunk upstream:
https://github.com/libguestfs/libguestfs/commit/7ddf6bcbfdc66855b594afaaacdc4998177f2286
> diff --git src/proto.c src/proto.c
> index 8001c8c..53d1d6b 100644
> --- src/proto.c
> +++ src/proto.c
> @@ -252,7 +252,7 @@ guestfs___send (guestfs_h *g, int proc_nr,
> * have no parameters.
> */
> if (xdrp) {
> - if (!(*xdrp) (&xdr, args)) {
> + if (!(*xdrp) (&xdr, args, 0)) {
> error (g, _("...
2015 Feb 05
4
Patchable build problems on OS X 10.10
Hello,
I'm attempting to create a Homebrew formula to get libguestfs to
compile on Mac OS X. I've managed to achieve success with several
monkey patches, but since Homebrew's policy is to contact maintainers
about proper fixes in upstream, I would like to ask if there are any
plans to fix these issues. I'm afraid I don't know C well enough to
propose decent solutions myself.