[libvirt] [PATCH] fix MinGW compilation(200808)

Jim Meyering jim at meyering.net
Mon Aug 11 08:41:43 UTC 2008


Atsushi SAKAI <sakaia at jp.fujitsu.com> wrote:
> I am looking around the code about WEXITSTATUS.
> It seems that following kind of code needs on gnulib.
> http://kerneltrap.org/mailarchive/git/2008/2/27/1003054
> What do you think?

Hi Atsushi,

Yes, git provides MinGW support, and I see it's compat/mingw.h
includes this line:

#define WEXITSTATUS(x) ((x) & 0xff)

Could it be as easy as adding this?

  #ifndef WEXITSTATUS
  # define WEXITSTATUS(x) ((x) & 0xff)
  #endif

gnulib provides heavy-weight (different API, and GPL'd) support for
running subprocesses via its execute module, but it targets more
than just MinGW.




More information about the libvir-list mailing list