Re: Compile .cgi programs

2002-01-11 Thread zentara
On 11 Jan 2002 05:56:08 -, [EMAIL PROTECTED] (Kondreddy Rama Koti Reddy) wrote: 2) when i try to generate exe from .pl files with perllcc -o exename sourcename=0D=0AIt's giving the following error. /tmp/ccdiyw10.o: In function `xs_init': /tmp/ccdiyw10.o(.text+0x33b9): undefined

Re: Compile .cgi programs

2002-01-11 Thread Jon Molin
I'm not sure I really understand what you're after, i get the feeling you're normaly using windows. If you set the mod to 755 (rwxrxrx) the perlscript will be executable, there's no need t compile it with perlcc. If it's speed you're after, you should use mod_perl instead (perl.apache.org) as

Re: Compile .cgi programs

2002-01-11 Thread zentara
On 11 Jan 2002 05:56:08 -, [EMAIL PROTECTED] (Kondreddy Rama Koti Reddy) wrote: 2) when i try to generate exe from .pl files with perllcc -o exename sourcename=0D=0AIt's giving the following error. /tmp/ccdiyw10.o: In function `xs_init': /tmp/ccdiyw10.o(.text+0x33b9): undefined

Compile .cgi programs

2002-01-10 Thread kondreddy Rama koti Reddy
Dear Friends, can u tell me, how can i create an executable file for the .cgi program on linux whihc is having perl and javascript statements. Thanking you K. Rama koti Reddy. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Compile .cgi programs

2002-01-10 Thread Jon Molin
Take a look at 'perldoc CGI.pm' Perhaps you should buy a book as well? Or read the online documentation? I can recomend 'learning perl'. /Jon kondreddy Rama koti Reddy wrote: Dear Friends, can u tell me, how can i create an executable file for the .cgi program on linux whihc is having

Re: Compile .cgi programs

2002-01-10 Thread nafiseh saberi
hi. i wrote some code with c that execute this perl code for me in form of exe file... I search it and reply it to you... I find it in one search ion google. _ Sincerely yours Nafiseh Saberi The amount of beauty required to launch one ship. I

Re: Compile .cgi programs

2002-01-10 Thread victor
.. this might be what you are looking for. http://www.indigostar.com/perl2exe.htm#download kondreddy Rama koti Reddy wrote: Dear Friends, can u tell me, how can i create an executable file for the .cgi program on linux whihc is having perl and javascript statements. Thanking

Re: Compile .cgi programs

2002-01-10 Thread Randal L. Schwartz
Kondreddy == Kondreddy Rama Koti Reddy [EMAIL PROTECTED] writes: Kondreddy Dear Friends, Kondreddy can u tell me, how can i create an executable Kondreddy file for the .cgi program on linux whihc Kondreddy is having perl and javascript statements. Kondreddy chmod +x filename If

Re: Compile .cgi programs

2002-01-10 Thread William.Ampeh
This is the obvious solution, but one may also ask what is the '.cgi' written in? That is, is a Perl cgi, a Shell script cgi, a C cgi, etc. If it is a Shell script cgi, a Perl script, then, of course you will need to make it executable, you also will want to include #!{location of shell} If

Compile .cgi programs

2002-01-10 Thread kondreddy Rama koti Reddy
Dear Friends, can u tell me, how can i create an executable file for the perlcgi program on linux. The cgi program is written in perl and it also have javascript for client side validations. cgi file have require and use statements. A1) How can i create exe files for the .cgi files