[Quickfix-developers] Error using PostgreSQL 8.2 - fatal error LNK1104: cannot open file 'libpqdll.
Brought to you by:
orenmnero
|
From: Djalma R. d. S. F. <drs...@gm...> - 2007-04-13 14:19:11
|
Hello, Trying to use PostgreSQL 8.2 with quickfix, I got the following link error: fatal error LNK1104: cannot open file 'libpqdll.lib' I only succeeded after modifying the source code to link with existing libpq.lib. Does anyone know if libpqdll was deprecated? Regards, Djalma --> PostgreSQLConnection.h ... #ifdef _MSC_VER #pragma warning( disable : 4503 4355 4786 4290 ) //#pragma comment( lib, "libpqdll" ) // removed! #pragma comment( lib, "libpq" ) // this one works!! #endif ... |