From: Mark D. <mar...@zn...> - 2007-05-12 15:02:22
|
Hi, When building Wx-0.74 against Alien 0.31 wxWidgets 2.8.3 wxGTK The tests fail at 'use_ok Wx;' The problem is in loading Wx::RichText which has a dependency on the xml lib. The loader cannot locate the xml lib. The same problem occurs if I install the build anyway and then do: use Wx qw( :allclasses ); or use Wx::RichText; I think that the xml lib needs to be loaded in Wx/RichText.pm with Wx::load_dll( 'adv' ); Wx::load_dll( 'html' ); Wx::load_dll( 'xml' ); Wx::load_dll( 'richtext' ); which fixes the problems. Regards Mark |