Web pgadmin.org
 Home 
 ·  ·  ·  ·  ·  ·  · 
Re: [pgadmin-support] pgadmin3 beta3 build failure

Re: [pgadmin-support] pgadmin3 beta3 build failure



Thanks, Andreas -

Your changes got me past the previous error, now I'm seeing this one:

xrcDialogs.o(.gnu.linkonce.t._ZN17wxMemoryFSHandlerD1Ev+0x13): In function `wxMemoryFSHandler::~wxMemoryFSHandler()': ui/common/xrcDialogs.cpp:8926: undefined reference to `wxMemoryFSHandlerBase::~wxMemoryFSHandlerBase()' xrcDialogs.o(.gnu.linkonce.t._ZN17wxMemoryFSHandlerD0Ev+0x14): In function `wxMemoryFSHandler::~wxMemoryFSHandler()': ui/common/xrcDialogs.cpp:8926: undefined reference to `wxMemoryFSHandlerBase::~wxMemoryFSHandlerBase()'
collect2: ld returned 1 exit status
make[2]: *** [pgadmin3] Error 1

Look familiar? I'm not getting anything on goole, and little in the archives.

-Steve


Andreas Pflug wrote:
steve fox wrote:

Thanks, Andreas -

I'm noted for being good at inventing new errors! ;)

Here's my line 86:

 m_conversion->MB2WC((wxChar*)wxStringBuffer(str, nLen), buffer, nLen+1);


All still breaks, and I'm open to any casting tips.


Try full casting:
m_conversion->MB2WC((wchar_t*)(wxChar*)wxStringBuffer(str, nLen), (const char*)buffer, (size_t)(nLen+1));

and try to locate which param finally was the offending.

Regards,
Andreas






Home | Main Index | Thread Index

top