Re: [HACKERS] Also cannot build the postgresql server under Mingw using 8.0 beta 2

2004-09-01 Thread Magnus Hagander
lying that patch. Might want to put that on the download page.   //Magnus From: Dann Corbit [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 9:00 PMTo: PostgreSQL-developmentSubject: [HACKERS] Also cannot build the postgresql server under Mingw using 8.0 beta 2

Re: [HACKERS] Also cannot build the postgresql server under Mingw

2004-09-01 Thread Andrew Dunstan
Dann Corbit wrote: -Original Message- From: Andrew Dunstan [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 12:31 PM To: Dann Corbit Cc: PostgreSQL-development Subject: Re: [HACKERS] Also cannot build the postgresql server under Mingw using 8.0 beta 2 Dann Corbit wrote

Re: [HACKERS] Also cannot build the postgresql server under Mingw using 8.0 beta 2

2004-09-01 Thread Dann Corbit
> -Original Message- > From: Andrew Dunstan [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 01, 2004 12:31 PM > To: Dann Corbit > Cc: PostgreSQL-development > Subject: Re: [HACKERS] Also cannot build the postgresql > server under Mingw using 8.0 beta 2 &

Re: [HACKERS] Also cannot build the postgresql server under Mingw

2004-09-01 Thread Andrew Dunstan
Dann Corbit wrote: Adding this to the c.h file solved most of the problems for the libpq DLL: #if defined(HAVE_STRINGS_H) && !defined(_MSC_VER) #include #endif ... #if defined(WIN32) && defined(_MSC_VER) #include #define snprintf _snprintf #endif Since I ran configure for MINGW (which has stri

Re: [HACKERS] Also cannot build the postgresql server under Mingw using 8.0 beta 2

2004-09-01 Thread Dann Corbit
Title: Message Adding this to the c.h file solved most of the problems for the libpq DLL:   #if defined(HAVE_STRINGS_H) && !defined(_MSC_VER)#include #endif... #if defined(WIN32) && defined(_MSC_VER)#include #define snprintf _snprintf#endif Since I ran configure for MINGW (which has strin

[HACKERS] Also cannot build the postgresql server under Mingw using 8.0 beta 2

2004-09-01 Thread Dann Corbit
Title: Message Also cannot build the PostgreSQL server under Mingw   dlltool --dllname postgres.exe --output-exp postgres.exp --def postgres.defgcc -O2 -fno-strict-aliasing -Wall -Wmissing-prototypes -Wmissing-declarations -L../../src/port   -o postgres.exe -Wl,--base-file,postgres.base post