> going back thru old emails..... Is there still help required here?
Yes, sure, help is always most welcome, especially with the bigger problem
down in the mail ...
Here's a status update:
> > GCC
Currently there's src/stc/PlatWX.cpp which results in a compilation error
(also in Motif and X11 builds), but at that time, most stuff has successfully
been built (i.e. all but the so called "wxStyledTextCtrl"), so for the moment
we can simply ignore this...
> > For Watcom there's an additional problem with using select on sockets (IIRC in
> > selectdispatcher.cpp) - probably some missing define or include, based on the
> > observation that gsocket.c(pp) used to compile, didn't it?
That one is still open since I don't find time to install OpenWatcom and look at
the problem ...
_The_bigger_problem_ is, that the samples currently simply don't work, even those
that do compile. I don't even get a window, which is a bit frustrating. :-(
> > in time for the wx-29.0 snapshot that's currently planned for the end of
> > january (at least for all the other platforms).
No release plans at the moment, though. Some people started a complete documentation
update/rework switching from LaTeX to Doxygen, which is going to take a couple more
weeks and I don't think there'll be a release before there is a reliable documentation
again ..
Regards,
Stefan
> > > For Watcom there's an additional problem with using select on sockets (IIRC in
> > > selectdispatcher.cpp) - probably some missing define or include, based on the
> > > observation that gsocket.c(pp) used to compile, didn't it?
>
> That one is still open since I don't find time to install OpenWatcom and look at
> the problem ...
Try this or similar, it gets us a bit further
#if defined(HAVE_SYS_SELECT_H)
#include <sys/time.h>
#include <sys/select.h>
#endif
#if defined(__WATCOMC__)
#include <sys/time.h>
#include <sys/select.h>
#include <tcpustd.h>
#endif
Cheers,
Dave