Re: How to hide the source of pm files using pp

2008-06-05 Thread Henry Wu
Thanks for your reply. I tried -F, it seems that it will Obfuscate all .pm included which is too many ( > 100). I just want to Obfuscate 3 .pm files that I wrote. Can I do that ? Thanks a lot. On 6/5/08, Steffen Mueller <[EMAIL PROTECTED]> wrote: > Hi Henry, > > Henry

How to hide the source of pm files using pp

2008-06-05 Thread Henry Wu
Hi guys, I am building an exe file using pp -f Bleach -f Obfuscate -o abc abc.pl I found that only abc.pl 's source was hided, all .pm files that abc.pl used are still in clear txt in the extracted directory I want to hide some of the my .pm source files that used by abc.pl as well . How do I

Re: How to build exe using pp to ignore PERL5LIB environmentvariable

2008-05-29 Thread Henry Wu
. So the perl code failed before the exe file can expand itself and before the final perl script run. I do not quite understand the PAR code structure, but I guess that could be the problem. Please help. Thanks a lot. On 5/28/08, Henry Wu <[EMAIL PROTECTED]> wrote: > Thanks for your help

Re: How to build exe using pp to ignore PERL5LIB environmentvariable

2008-05-29 Thread Henry Wu
Thanks for your help and reply. I am using perl 5.88 activestate perl PAR-Packer 0.976 PAR 0.976 it seems that PERL5LIB is exported to the produced exe in this version. Thanks. On 5/28/08, Steffen Mueller <[EMAIL PROTECTED]> wrote: > Hi Eugene, > > Eugene Olbinsky wrote: > > H

How to build exe using pp to ignore PERL5LIB environment variable

2008-05-28 Thread Henry Wu
Hi, Thanks for creating the wonderful pp tool. I packaged an executable abc.exe from perl script using pp. Worked fine for most of users, But some users have existing old perl installation and have environmental variable PERL5LIB set. When these users run the abc.exe, they saw the following m

how to access pp packaged file from perl ?

2008-02-18 Thread Henry Wu
Hi, Thanks for creating the wonderful pp tool. I am building perl/tk application with some icon images. I am trying to package all the referenced images to the produced exe too. I know I can add extra image file to the produced exe using --addfile option, but how do I reference the file

Re: problem with pp

2008-01-10 Thread Henry Wu
Thanks a lot .. Your support is great !! I learned a lot from you. PAR is such a great tool. I hope I know this eariler. On 1/9/08, Steffen Mueller <[EMAIL PROTECTED]> wrote: > > Hi Henry, > > Henry Wu henry.wu3-at-gmail.com |newsgroups5| wrote: > > I tried again and I p

Re: problem with pp

2008-01-09 Thread Henry Wu
d. An > incremental build after the change might not be enough. > > Also, you may see no debug output due to buffering. Try setting $|=1 at > the top of the script. > > --Scott > > -Original Message----- > From: Roderich Schupp [mailto:[EMAIL PROTECTED] > Sent: T

Re: problem with pp

2008-01-08 Thread Henry Wu
(qq(Skipping "$member_name" since it already exists at "$dest_name")); } On 1/8/08, Steffen Mueller <[EMAIL PROTECTED]> wrote: > > Hi Henry, > > Henry Wu wrote: > > Thanks for your help. > > I just tried, Surprisingly the fix does not wor

Re: problem with pp

2008-01-08 Thread Henry Wu
Thanks for your help. I just tried, Surprisingly the fix does not work. It seems that the fix does not have any effect at all. I am still getting the same error. I attached a very simple test perl script called testpp.pl. I attached the two dlls used as well. testpp.pl is very simple, only 10

Re: problem with pp

2008-01-07 Thread Henry Wu
e expected size is a good compromise. > It's a fast sanity check that should catch the most common problems. > > --Scott > > -Original Message- > From: Steffen Mueller [mailto:[EMAIL PROTECTED] > Sent: Monday, January 07, 2008 11:52 AM > To: Scott Stanton > Cc: Hen

problem with pp

2008-01-07 Thread Henry Wu
Hi, Thanks for creating the wonderful pp tool. I used pp to package a perl script into a windows command line exe program. I packaged openssl libeay32.dll and ssleay32.dll into the exe . It works great when I run the first copy of the exe program under windows command prompt. But while