Re: [Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-02-03 Thread Blue Swirl
Thanks, applied. On Wed, Jan 16, 2013 at 6:04 PM, Stefan Weil wrote: > MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. > We must also fix the include statements in util/envlist.c to include > that file. > > We currently don't need an implementation of strtok_r because the >

Re: [Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-01-30 Thread Stefan Weil
Am 17.01.2013 21:45, schrieb Blue Swirl: On Wed, Jan 16, 2013 at 6:04 PM, Stefan Weil wrote: MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. We must also fix the include statements in util/envlist.c to include that file. We currently don't need an implementation of st

Re: [Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-01-19 Thread Blue Swirl
On Fri, Jan 18, 2013 at 8:36 AM, Paolo Bonzini wrote: > Il 17/01/2013 22:18, Blue Swirl ha scritto: >> On Thu, Jan 17, 2013 at 8:54 PM, Stefan Weil wrote: >>> Am 17.01.2013 21:45, schrieb Blue Swirl: >>> On Wed, Jan 16, 2013 at 6:04 PM, Stefan Weil wrote: > > MinGW has no strtok_r,

Re: [Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-01-18 Thread Paolo Bonzini
Il 17/01/2013 22:18, Blue Swirl ha scritto: > On Thu, Jan 17, 2013 at 8:54 PM, Stefan Weil wrote: >> Am 17.01.2013 21:45, schrieb Blue Swirl: >> >>> On Wed, Jan 16, 2013 at 6:04 PM, Stefan Weil wrote: MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. We must als

Re: [Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-01-17 Thread Blue Swirl
On Thu, Jan 17, 2013 at 8:54 PM, Stefan Weil wrote: > Am 17.01.2013 21:45, schrieb Blue Swirl: > >> On Wed, Jan 16, 2013 at 6:04 PM, Stefan Weil wrote: >>> >>> MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. >>> We must also fix the include statements in util/envlist.c to in

Re: [Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-01-17 Thread Stefan Weil
Am 17.01.2013 21:45, schrieb Blue Swirl: On Wed, Jan 16, 2013 at 6:04 PM, Stefan Weil wrote: MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. We must also fix the include statements in util/envlist.c to include that file. We currently don't need an implementation of strtok

Re: [Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-01-17 Thread Blue Swirl
On Wed, Jan 16, 2013 at 6:04 PM, Stefan Weil wrote: > MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. > We must also fix the include statements in util/envlist.c to include > that file. > > We currently don't need an implementation of strtok_r because the > code is compiled b

[Qemu-devel] [PATCH] util: Fix compilation of envlist.c for MinGW

2013-01-16 Thread Stefan Weil
MinGW has no strtok_r, so we need a declaration in sysemu/os-win32.h. We must also fix the include statements in util/envlist.c to include that file. We currently don't need an implementation of strtok_r because the code is compiled but not linked for MinGW. Signed-off-by: Stefan Weil --- inclu