Shea Martin wrote:
> But now I have run into a problem I am not sure how to fix. It looks
> like an autoboxing problem, but I could be wrong. I didn't have a lot
> of time to look into it.
> The error is as follows:
> <code>
> make all-recursive
> make[1]: Entering directory
> `/home/z1/SUN_PACKAGES/tarballs/postgres/pgadmin3-1.2.0'
> Making all in src
> make[2]: Entering directory
> `/home/z1/SUN_PACKAGES/tarballs/postgres/pgadmin3-1.2.0/src'
> if g++ -DHAVE_CONFIG_H -I. -I. -I..
> -DDATA_DIR=\"/usr/local/pgadmin3/share/pgadmin3/\" -Wall -g
> -I../src/include -I../src/agent/include -I/usr/local/pgsql/include -DSSL
> -I/usr/local/lib/wx/include/motif-ansi-release-2.5
> -I/usr/local/include/wx-2.5 -D__WXMOTIF__ -I/usr/openwin/include
You're obviously compiling it for Motif, not GTK2; we never tried that
and you'll probably face several font related resizing problems there.
> utils/sysSettings.cpp: In constructor `sysSettings::sysSettings(const
> wxString&)':
It exists for win32 and gtk2. Equivalent could besystemFont = new wxFont();systemFont->SetNativeFontInfo(fontName);
if you like to try it. I'd recommend GTK2, because with Motif you'll be
on your own unless you want to claim responsibility of the Motif pgAdmin
version.
Regards,
Andreas