Re: [xml] win32\VC10\config.h and VS 2015

2016-03-11 Thread Bruce Dawson
Now is an odd time to be writing snprintf fallbacks for older MSVC versions - I look forward to never building with such versions again! Could be useful for some people of course, but it is a diminishing audience. On Fri, Mar 11, 2016 at 1:24 PM, Nick Wellnhofer wrote: > On 07/03/2016 22:46, Br

Re: [xml] win32\VC10\config.h and VS 2015

2016-03-11 Thread Nick Wellnhofer
On 07/03/2016 22:46, Bruce Dawson wrote: The config.h file in win32\VC10 is incompatible with VS 2015 because VS 2015 provides an implementation of snprintf and prohibits using the preprocessor to define it. Therefor an ifdef check is needed around that definition in VC10\config.h. Here is a patc

Re: [xml] win32\VC10\config.h and VS 2015

2016-03-11 Thread Daniel Veillard
On Tue, Mar 08, 2016 at 12:30:45PM +0100, Michael Stahl wrote: > On 08.03.2016 12:27, Michael Stahl wrote: > > On 07.03.2016 22:46, Bruce Dawson wrote: > >> > >> It would be great to get that same patch in libxml2, and other > >> developers will need it if they use VC10\config.h. > > > > it looks

Re: [xml] win32\VC10\config.h and VS 2015

2016-03-08 Thread Michael Stahl
On 08.03.2016 12:27, Michael Stahl wrote: > On 07.03.2016 22:46, Bruce Dawson wrote: >> >> It would be great to get that same patch in libxml2, and other >> developers will need it if they use VC10\config.h. > > it looks like release 2.9.3 already includes this fix, i've had to > remove a similar

Re: [xml] win32\VC10\config.h and VS 2015

2016-03-08 Thread Michael Stahl
On 07.03.2016 22:46, Bruce Dawson wrote: > The config.h file in win32\VC10 is incompatible with VS 2015 because VS > 2015 provides an implementation of snprintf and prohibits using the > preprocessor to define it. Therefor an ifdef check is needed around that > definition in VC10\config.h. Here is