Re: [PATCHES] Further patch for VS2005

2006-07-05 Thread Bruce Momjian
Patch applied. Thanks. --- Magnus Hagander wrote: > Hi! > > Attached patch is required ot build with the CRT that comes with Visual > Studio 2005. Basically MS defined errcode in the headers with a typedef, > so we have t

Re: [PATCHES] Further patch for VS2005

2006-06-26 Thread Magnus Hagander
> > *** src/pl/plpython/plpython.c 25 Jun 2006 00:18:24 > - 1.83 > > --- src/pl/plpython/plpython.c 26 Jun 2006 13:58:56 - > > *** > > *** 10,16 > > --- 10,19 > > /* Python uses #pragma to bring in a non-default > libpython on VC++ if > >* _DEBUG is d

Re: [PATCHES] Further patch for VS2005

2006-06-26 Thread Tom Lane
"Magnus Hagander" <[EMAIL PROTECTED]> writes: > *** src/pl/plpython/plpython.c25 Jun 2006 00:18:24 - 1.83 > --- src/pl/plpython/plpython.c26 Jun 2006 13:58:56 - > *** > *** 10,16 > --- 10,19 > /* Python uses #pragma to bring in a non-default libp

[PATCHES] Further patch for VS2005

2006-06-26 Thread Magnus Hagander
Hi! Attached patch is required ot build with the CRT that comes with Visual Studio 2005. Basically MS defined errcode in the headers with a typedef, so we have to #define it out of the way. While at it, fix a function declaration in plpython that didn't match the implementation (volatile missing)