I used MinGW + MSys to compile PostgreSQL 8.1.4 using the sequence:
./configure --no-zlib
make
make install
I am now trying to compile the Qt 3.3 PostgreSQL driver, which needs
libpqdll.lib. However, the PostgreSQL build process did not create a
libpqdll.lib,
though it built libpq.dll just fine.
Did I miss a step to get libqpdll.lib built?
jasen - 20 Aug 2006 03:25 GMT
> I used MinGW + MSys to compile PostgreSQL 8.1.4 using the sequence:
>
[quoted text clipped - 8 lines]
>
> Did I miss a step to get libqpdll.lib built?
I think ypu need to build libpqdll.dll to get libpqdll.lib
Bye.
Jasen
Tony O'Bryan - 21 Aug 2006 16:45 GMT
>> Did I miss a step to get libqpdll.lib built?
>
> I think ypu need to build libpqdll.dll to get libpqdll.lib
Thanks for the reply. I discovered that MinGW creates libpq.a (obvious in
retrospect), which is used instead of libpqdll.lib.
It's all working now.