in reply to pp/prima problem

Don't know if it's related or not but..

Back when I used to use perl2exe, I'd get similar errors with Tk:: components. The key was to explicitly use the components. If you're not explicitly useing the module, maybe try that.

Replies are listed 'Best First'.
Re^2: pp/prima problem
by tchatzi (Acolyte) on May 30, 2005 at 19:40 UTC
    I don't know if you know this link, PP Man Pages, Take a look at it.
    When you include modules with pp like Foo::Boo, be sure you include the Foo module too, sometimes it causes problems cause the Boo module might uses Foo module, or it's functions

    ``The wise man doesn't give the right answers, he poses the right questions.'' TIMTOWTDI
      The Prima GUI standalone exe is now working ok...

      Seems like the dependency detection within PP prefers this:

      use Prima; use Prima::Buttons; use Prima::Application; use Prima::MsgBox; use Prima::StdBitMap;

      to this...

      use Prima qw(StdBitmap Buttons Application MsgBox);
      Many Thanks :) Steve