How to turn your Perl programs into standalone executables

2004-06-23 Thread Sex Maniac
Hi just want to ask, if I have a perl program, and I want to turn it into standalone executables/binary. Question is how ? What programs/packages/ports I must use ? Usually in windows98, I can use PerlApp to Turn your Perl programs into standalone executables (.exe) I don't want my users can see

Re: How to turn your Perl programs into standalone executables

2004-06-23 Thread Simon Dick
Try perlcc On Wed, 23 Jun 2004 02:08:57 -0700 (PDT), Sex Maniac [EMAIL PROTECTED] wrote: Hi just want to ask, if I have a perl program, and I want to turn it into standalone executables/binary. Question is how ? What programs/packages/ports I must use ? Usually in windows98, I can use

Re: How to turn your Perl programs into standalone executables

2004-06-23 Thread Juho Vuori
Hello, Sex Maniac wrote: Hi just want to ask, if I have a perl program, and I want to turn it into standalone executables/binary. Question is how ? What programs/packages/ports I must use ? First add a line #!/usr/bin/perl as the very first line of your perl program. Without indenting or

Re: How to turn your Perl programs into standalone executables

2004-06-23 Thread Andy Harrison
On Wed, 23 Jun 2004 02:08:57 -0700 (PDT), Sex Maniac [EMAIL PROTECTED] wrote: Hi just want to ask, if I have a perl program, and I want to turn it into standalone executables/binary. Question is how ? What programs/packages/ports I must use ? Usually in windows98, I can use PerlApp to

Re: How to turn your Perl programs into standalone executables

2004-06-23 Thread Juho Vuori
Oops, it seems I didn't really answer your question but something else. I should learn to read before experimenting with writing. Sorry. Juho Juho Vuori wrote: Hello, Sex Maniac wrote: Hi just want to ask, if I have a perl program, and I want to turn it into standalone executables/binary.

Re: How to turn your Perl programs into standalone executables

2004-06-23 Thread Sex Maniac
--- Andy Harrison [EMAIL PROTECTED] wrote: man perlcc Gee, thanks, Sir. Note that, regardless of platform, compiling your perl apps to hide something is a very bad idea. It is very easy to run it through /usr/bin/strings and see bits and pieces of an executable file of any type. With

Re: How to turn your Perl programs into standalone executables

2004-06-23 Thread Warren Block
On Wed, 23 Jun 2004, Sex Maniac wrote: I don't want my users can see the source program in .pl I want my source program is hidden from user and the others administrators. So I need the executable file/binary file only. perldoc -q hide -Warren Block * Rapid City, South Dakota USA

Re: How to turn your Perl programs into standalone executables

2004-06-23 Thread KiDDiE.Ox
On Wed 2004-06-23 (02:08), Sex Maniac wrote: Hi just want to ask, if I have a perl program, and I want to turn it into standalone executables/binary. Question is how ? What programs/packages/ports I must use ? Usually in windows98, I can use PerlApp to Turn your Perl programs into