* robert w hall (bobh@n-cantrell.demon.co.uk):
I _hope_ to test on the ps2 over the weekend, when I can get the creaky box back up proerly Bob
In article <20060330155817.GC29028@dillo.org>, Jorge Arellano Cid <jcid@dillo.org> writes
Hi there!
The new dillo-0.8.6-rc3 tarball is ready for download. Get it from:
http://www.dillo.org/download/dillo-0.8.6-rc3.tar.bz2 OK, I can compile this with --disable-dlgui (for this relief much
In article <$N7zyiApBaLEFw0m@n-cantrell.demon.co.uk>, robert w hall <bobh@n-cantrell.demon.co.uk> writes thanks...)
But, the latest fltk does not compile on the ps2 (...'input_callback...' is private) - looks like the age of the ps2 base-distribution may be catching us out?
fltk2 needs gcc 3 to compile "as is" - does linux/ps2 only come with gcc 2.95? This bites me on FreeBSD 4, too, where the system compiler is gcc 2.95.4. (Not counting the fact that snapshots past 4825 do not compile with gcc 3.4.x either, sigh.) Could you try this patch? It is stolen from fltk's bug database, STR#1124. It enables me to compile fltk2 r4825 with gcc 2.95.4 on FreeBSD. --- fltk/ComboBox.h.orig Sun Apr 2 12:05:31 2006 +++ fltk/ComboBox.h Sun Apr 2 12:07:16 2006 @@ -103,7 +103,7 @@ ComboBox *combo_; }; ComboInput *input_; -#ifdef _WIN32 +#if defined ( _WIN32 ) || defined ( __GNUC__ ) && __GNUC__ < 3 public: #endif static void input_callback_(Widget*,void*);