> I noticed that when compile a C program that uses libpq
> static library, linker need following libraries:
>
> libpq.lib
> msvcrt.lib
> advapi32.lib
> wsock32.lib
> kernel32.lib
> user32.lib
> gdi32.lib
> winspool.lib
> uuid.lib
>
> If somebody gets same problem, maybe this could be helpful.
These are all the standard libraries used by almost all windows
programs. The only "non windows" library is msvcrt which is the MS
Visual C runtime, used by all programs made with MSVC.
Just link with them, and your program should work fine, no? What
specifically is your problem?
//Magnus