On Tue, 21 Aug 2007, Jamie Lahowetz wrote: > I tried packing a test.exe using: > C:\Perl\site\bin>pp -o C:\Users\deadpickle\Desktop\test.exe > C:\Users\deadpickle\ > Desktop\GRRUVI-windowed-v1.004.pl > > and recieved this error: > parloQXY.exe - Entry Point Not Found: The procedure entry point > Perl_sv_2iv_flags could not be located in the dynamic link library > perl58.dll
This mean you are using an application built with AP822 against an older version of perl58.dll. AP822 contains all changes from the Perl 5.8.x maintenance branch that will eventually become 5.8.9. One of the changes is that the SvIV() macro may now call the Perl_sv_2iv_flags() function, which does not exist in earlier 5.8.x releases. You'll need to hunt down the origin of the rogue perl58.dll and make sure you use the latest one consistently. Cheers, -Jan
