Re: Compiling pgAdmin on SuSE 10.1 - Mailing list pgadmin-hackers

From Dave Page
Subject Re: Compiling pgAdmin on SuSE 10.1
Date
Msg-id E7F85A1B5FF8D44C8A1AF6885BC9A0E401388559@ratbert.vale-housing.co.uk
Whole thread Raw
In response to Compiling pgAdmin on SuSE 10.1  (Miha Radej <miha.radej@siix.com>)
Responses Re: Compiling pgAdmin on SuSE 10.1  (Miha Radej <miha.radej@siix.com>)
List pgadmin-hackers

> -----Original Message-----
> From: pgadmin-hackers-owner@postgresql.org
> [mailto:pgadmin-hackers-owner@postgresql.org] On Behalf Of Miha Radej
> Sent: 27 May 2006 16:03
> To: pgadmin-hackers
> Subject: [pgadmin-hackers] Compiling pgAdmin on SuSE 10.1
>
> Hi!
>
> I tried to compile pgAdmin on a Suse 10.1 system, using a fresh SVN
> checkout (rev 5210).
>
> Attached is a patch with changes I had to apply in order to be able to
> compile pgAdmin.

Thanks - applied. We really need a buildfarm....

> I also got the following warnings while compiling pgAdmin - got them
> before and after adding the headers, only line numbers differ:
>
> ./frm/frmReport.cpp: In member function 'virtual void
> reportObjectDataDictionaryFactory::GenerateReport(frmReport*,
> pgObject*)':
> ./frm/frmReport.cpp:1335: warning: cannot pass objects of non-POD type
> 'class wxString' through '...'; call will abort at runtime

Yeah, these ones only fail on GCC - it's complaining about passing a
wxString as a parameter to a variadic function. The fix is to use the
c_str() member, eg.

printf("%s: %s", sqlState.c_str(), errMsg.c_str());

It's easy to forget :-(

Thanks, Dave.

pgadmin-hackers by date:

Previous
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r5211 - in trunk/pgadmin3/src: frm include/ctl
Next
From: Miha Radej
Date:
Subject: Re: Compiling pgAdmin on SuSE 10.1