On Mon, Jan 11, 2010 at 1:48 PM, Nele Kosog <k...@sevencs.com> wrote:
> When running the EXE the program exits with the following error message:
>
> Can't locate object method "new" via package "Digest::SHA" at Digest.pm
> line 43
> (#1)
>    (F) You called a method correctly, and it correctly indicated a
> package
>    functioning as a class, but that package doesn't define that
> particular
>    method, nor does any of its base classes.  See perlobj.
>
> Uncaught exception from user code:
>        Can't locate object method "new" via package "Digest::SHA" at
> Digest.pm line 43.

Does this also happen with a minimalist pp'ed executable, e.g.

pp -o hello.exe -e 'print "hello\n"'
./hello.exe

If this runs OK, does your program (or any modules it uses)
something like

$d = Digest->new("SHA");

Cheers, Roderich

Reply via email to