[wxPython] IRIX strange ImportError

It works now! I recompiled both wxGTK and wxPython with gcc and now I can run
the demo. I only had to solve a compiler error in src/unix/utilsunx.cpp:

line 891 was:

     act.sa_handler = wxFatalSignalHandler;

I changed it in:

     act.sa_handler = (void (*)()) wxFatalSignalHandler;

Then gcc was able to compile wxGTK without any problem. The lesson is: for open
source packages, it's better to use gcc...

Thanks,
Maurizio

···

On 20/06/2000 18.39.49 Robin Dunn wrote:

>
>Was wxGTK also built with gcc or with CC?
>

With CC.

I would try building wxGTK with gcc also. Your error looked like it might
be a problem of the two compilers doing name mangling differently.

--
Robin Dunn
Software Craftsman
robin@AllDunn.com
http://wxpython.org Java give you jitters?
http://wxpros.com Relax with wxPython!