Re: [xml] libxml2.xmlIO.awn.1.patch

2006-10-10 Thread Daniel Veillard
On Sat, Sep 09, 2006 at 06:20:08PM +0400, Emelyanov Alexey wrote: 2006-09-06 Andrew W. Nosenko [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] * xmlIO.c [HAVE_STAT HAVE__STAT]: Fix the compilation breakage: macro that redefines of the 'stat' as '_stat' is removed (was introduced in the

Re: [xml] libxml2.xmlIO.awn.1.patch

2006-09-13 Thread Andrew W. Nosenko
On 9/9/06, Emelyanov Alexey [EMAIL PROTECTED] wrote: Changes in this patch (for xmlIO.c rev. 1.172): 1. Replacement of 'stat' on '_stat' only on Windows 2. C style comments are used I hope, patch must solve compilation problem. I have no FreeBSD, but library was also compiled with glibc 2.0,

Re: [xml] libxml2.xmlIO.awn.1.patch

2006-09-10 Thread Emelyanov Alexey
Tim Van Holder [EMAIL PROTECTED] wrote: * xmlIO.c [HAVE_STAT HAVE__STAT]: Fix the compilation breakage: macro that redefines of the 'stat' as '_stat' is removed (was introduced in the r1.172). Removing this macro results in occurrence of warnings about types incompatibility in

Re: [xml] libxml2.xmlIO.awn.1.patch

2006-09-10 Thread Daniel Veillard
On Sun, Sep 10, 2006 at 12:12:21PM +0400, Emelyanov Alexey wrote: Tim Van Holder [EMAIL PROTECTED] wrote: * xmlIO.c [HAVE_STAT HAVE__STAT]: Fix the compilation breakage: macro that redefines of the 'stat' as '_stat' is removed (was introduced in the r1.172). Removing this macro

Re: [xml] libxml2.xmlIO.awn.1.patch

2006-09-08 Thread Andrew W. Nosenko
On 9/7/06, Emelyanov Alexey [EMAIL PROTECTED] wrote: 2006-09-06 Andrew W. Nosenko [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] [...] Some words about removed '#define stat _stat': 1. this define is just wrong because replaces declarations like struct stat stat_buff; by

Re: [xml] libxml2.xmlIO.awn.1.patch

2006-09-07 Thread Emelyanov Alexey
2006-09-06 Andrew W. Nosenko [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] [...] Some words about removed '#define stat _stat': 1. this define is just wrong because replaces declarations like struct stat stat_buff; by struct _stat stat_buff; and we have either compilation

[xml] libxml2.xmlIO.awn.1.patch

2006-09-06 Thread Andrew W. Nosenko
2006-09-06 Andrew W. Nosenko [EMAIL PROTECTED] * xmlIO.c [HAVE_STAT HAVE__STAT]: Fix the compilation breakage: macro that redefines of the 'stat' as '_stat' is removed (was introduced in the r1.172). * xmlIO.c: (xmlWrapOpenUtf8):