Hi Raphaël.
From: "Raphaël Enrici" <blacknoz@club-internet.fr>
> Hi Hiroshi, Andreas & buddies,
>
(snip)
>
> The main problem I encounter today is (just as before) linked to the
> wxWidgets build.
> Actual wxWidgets snapshots don't build straight and our patched one does
> not neither (that's not new). Hiroshi, which wxWid CVS did you use
> finally ? The one I tried when I got it running or another one ? Do you
> still have the patched source somewhere ?
I used this
wxWindows-20040301-CVS
--- src/unix/dialup.cpp.orig Mon May 10 09:07:44 2004
+++ src/unix/dialup.cpp Mon May 10 09:08:47 2004
@@ -716,8 +716,8 @@
#if defined(__SOLARIS__) || defined (__SUNOS__)
// dialup device under SunOS/Solaris
- hasModem = strstr(output,"ipdptp") != (char *)NULL;
- hasLAN = strstr(output, "hme") != (char *)NULL;
+ hasModem = strstr(output.fn_str(),"ipdptp") != (char *)NULL;
+ hasLAN = strstr(output.fn_str(), "hme") != (char *)NULL;
#elif defined(__LINUX__) || defined (__FREEBSD__)
hasModem = strstr(output.fn_str(),"ppp") // ppp
|| strstr(output.fn_str(),"sl") // slip
However,i10n is condition bad.:-(
This environment isn't satisfied even if patch of Andreas is applied.
Can i18n cope with solaris9?
regards,
Hiroshi Saito