From owner-freebsd-questions@FreeBSD.ORG Wed Jun 23 09:53:50 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9592016A4CE for ; Wed, 23 Jun 2004 09:53:50 +0000 (GMT) Received: from mproxy.gmail.com (mproxy.gmail.com [216.239.56.240]) by mx1.FreeBSD.org (Postfix) with SMTP id 7942643D45 for ; Wed, 23 Jun 2004 09:53:50 +0000 (GMT) (envelope-from aharrison@gmail.com) Received: by mproxy.gmail.com with SMTP id u22so59894cwc for ; Wed, 23 Jun 2004 02:53:50 -0700 (PDT) Received: by 10.38.181.55 with SMTP id d55mr21896rnf; Wed, 23 Jun 2004 02:53:50 -0700 (PDT) Message-ID: Date: Wed, 23 Jun 2004 05:53:50 -0400 From: Andy Harrison To: Sex Maniac In-Reply-To: <20040623090857.48694.qmail@web21502.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20040623090857.48694.qmail@web21502.mail.yahoo.com> cc: freebsd-questions@freebsd.org Subject: Re: How to turn your Perl programs into standalone executables X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jun 2004 09:53:50 -0000 On Wed, 23 Jun 2004 02:08:57 -0700 (PDT), 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 standalone executables (.exe) > > 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. man perlcc 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 the proper tools, one could even run a disassembler on it. -- Andy Harrison