search for: c0adc80

Displaying 3 results from an estimated 3 matches for "c0adc80".

Did you mean: c0a80
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.
2015 Feb 06
0
Re: Patchable build problems on OS X 10.10
...rogram_invocation_short_name #elif HAVE_GETPROGNAME # define program_name getprogname() #else # define program_name "libguestfs" #endif > /* Close all file descriptors matching the condition. */ > diff --git src/launch-libvirt.c src/launch-libvirt.c > index aaa8501..c0adc80 100644 > --- src/launch-libvirt.c > +++ src/launch-libvirt.c > @@ -57,6 +57,18 @@ > #include "guestfs-internal-actions.h" > #include "guestfs_protocol.h" > > +/* Fixes for Mac OS X */ > +#if defined __APPLE__ && defined __MACH__ > +#include...
2015 Feb 09
5
Re: Patchable build problems on OS X 10.10
...t;, mountpoint, NULL); > #else > execlp ("/sbin/umount", "umount", mountpoint, NULL); > #endif Or rather use fusermount only on Linux and umount (with no path) elsewhere. > > diff --git src/launch-libvirt.c src/launch-libvirt.c > > index aaa8501..c0adc80 100644 > > --- src/launch-libvirt.c > > +++ src/launch-libvirt.c > > @@ -57,6 +57,18 @@ > > #include "guestfs-internal-actions.h" > > #include "guestfs_protocol.h" > > > > +/* Fixes for Mac OS X */ > > +#if defined __APPLE__ &a...