Re: [HACKERS] The incompaitiblity of libpq and non-GCC compilers
Some of this looks at first glance like it doesn't belong in an interface library - maybe we should be wrapping more in #ifdef FRONTEND ? cheers andrew Dann Corbit wrote: After making the following change in port.h: /* vvv */ /* open() replacemen
[HACKERS] The incompaitiblity of libpq and non-GCC compilers
After making the following change in port.h: /* vvv */ /* open() replacement to allow delete of held files */ extern int win32_open(const char*,int,...); #ifdef _MSC_VER #define openwin32_open #else #define open(a,b,...) win