Re: trying to use libpq in Ubuntu

From: "Joshua J(dot) Kugler" <joshua(at)eeinternet(dot)com>
To: pgsql-general(at)postgresql(dot)org
Cc: Henri De Feraudy <feraudyh(at)yahoo(dot)com>
Subject: Re: trying to use libpq in Ubuntu
Date: 2010-09-21 17:08:06
Message-ID: 201009210908.07105.joshua@eeinternet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tuesday 21 September 2010, Henri De Feraudy elucidated thus:
> Hello,
> I have developed an application in C++ under Qt in Windows XP, now I
> would like to port it to Ubuntu GNU/Linux.
> Choosing the libraries in Windows was a piece of cake: the bottom of
> my Qt qmake project file was
> win32 {
> LIBS += "C:\Progra~1\PostgreSQL\8.4\lib\libpq.lib"
> INCLUDEPATH += "C:\Progra~1\PostgreSQL\8.4\include"
> }
> linux-g++ {
> LIBS += /usr/lib/libpq.a
> INCLUDEPATH += /usr/include/postgresql
> }
>
> This works fine in Windows, but in Ubuntu there are more than a
> hundred undefined symbols, like references to ldap
> Does anyone have a sample project file or suggestions?

If you are using Qt, why not use the Qt database abstraction classes?
That will save you having to compile directly against the Pg libraries.

j

--
Joshua Kugler
Part-Time System Admin/Programmer
http://www.eeinternet.com - Fairbanks, AK
PGP Key: http://pgp.mit.edu/  ID 0x73B13B6A

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Alban Hertroys 2010-09-21 17:39:48 Re: Triggers and locking
Previous Message Tom Lane 2010-09-21 16:59:25 Re: How about synchronous notifications?