Shoaib Mir wrote:
> I too faced same kind of a problem building libpq on Windows and as a
> solution to it removed "inline" from the file
> "\backend\utils\mb\wchar.c"
> 
> Did the following ... changed "static inline int" to "static int"
> instead at a couple of places in the wchar.c file
> 
> Run "nmake" after doing this specific change and hopefully it will
> solve the problem.

Interesting.  It seem the key line is here:

> > cl : Command line warning D4029 : optimization is not available in the
> > standard edition compiler

So the "standard" version doesn't support inline functions.  To fix
that, I think we need some compiler define test to tell us if it is a
"standard" edition compiler.

--
  Bruce Momjian   [EMAIL PROTECTED]
  EnterpriseDB    http://www.enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

Reply via email to