search for: socket4

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

Did you mean: socket
2015 Feb 09
5
Re: Patchable build problems on OS X 10.10
...m required version of libvirt. The libvirt backend > > * is new and not the default, so we can get away with forcing > > * people who want to try it to have a reasonably new version of This IMHO is clearly wrong: the O_* constants are for open() & friends, not for socket & socket4. Theoretically, we could switch the socket() usages in launch-libvirt.c to socket4(), which can be replaced by gnulib if missing (we already use the "accept4" gnulib module). On the other hand, it seems that such gnulib emulation does not provide SOCK_NONBLOCK, so either a) fix that in gn...
2015 Feb 09
0
Re: Patchable build problems on OS X 10.10
...virt. The libvirt backend > > > * is new and not the default, so we can get away with forcing > > > * people who want to try it to have a reasonably new version of > > This IMHO is clearly wrong: the O_* constants are for open() & friends, > not for socket & socket4. I checked this out before committing it, and I accepted it because on Linux/glibc, SOCK_CLOEXEC == O_CLOEXEC and SOCK_NONBLOCK == O_NONBLOCK (see the definitions in bits/socket.h and bits/socket_type.h on a Linux system). Of course this is not a law of nature and there could be systems where thi...
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.