RE: Use DLL files at Unix server

2010-04-23 Thread Brian Raven

From: perl-win32-users-boun...@listserv.activestate.com
[mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of
Kprasad
Sent: 23 April 2010 05:11
To: rex njoku; perl-unix-us...@listserv.activestate.com;
perl-win32-users@listserv.ActiveState.com
Subject: Re: Use DLL files at Unix server

 Thankx a lot for your response.
 What else can we use at unix server instead of directly using .pl
(source) file?

What's wrong with using Perl source directly?

Seriously, without knowing what you are trying to do, it is difficult to
give advice.

See http://catb.org/~esr/faqs/smart-questions.html.

-- 
Brian Raven 

Please consider the environment before printing this email.

This e-mail may contain confidential and/or privileged information. If you are 
not the intended recipient or have received this e-mail in error, please advise 
the sender immediately by reply e-mail and delete this message and any 
attachments without retaining a copy.

Any unauthorised copying, disclosure or distribution of the material in this 
e-mail is strictly forbidden.

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Use DLL files at Unix server

2010-04-23 Thread Kprasad
I've to give this script to someone else department and they should not be 
able to modify or see the code.

Kanhaiya
- Original Message - 
From: Brian Raven bra...@nyx.com
To: perl-unix-us...@listserv.activestate.com; 
perl-win32-users@listserv.ActiveState.com
Sent: Friday, April 23, 2010 2:30 PM
Subject: RE: Use DLL files at Unix server



 From: perl-win32-users-boun...@listserv.activestate.com
 [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of
 Kprasad
 Sent: 23 April 2010 05:11
 To: rex njoku; perl-unix-us...@listserv.activestate.com;
 perl-win32-users@listserv.ActiveState.com
 Subject: Re: Use DLL files at Unix server

 Thankx a lot for your response.
 What else can we use at unix server instead of directly using .pl
 (source) file?

 What's wrong with using Perl source directly?

 Seriously, without knowing what you are trying to do, it is difficult to
 give advice.

 See http://catb.org/~esr/faqs/smart-questions.html.

 -- 
 Brian Raven

 Please consider the environment before printing this email.

 This e-mail may contain confidential and/or privileged information. If you 
 are not the intended recipient or have received this e-mail in error, 
 please advise the sender immediately by reply e-mail and delete this 
 message and any attachments without retaining a copy.

 Any unauthorised copying, disclosure or distribution of the material in 
 this e-mail is strictly forbidden.

 ___
 Perl-Win32-Users mailing list
 Perl-Win32-Users@listserv.ActiveState.com
 To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

 

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: Use DLL files at Unix server

2010-04-23 Thread Brian Raven
Kprasad mailto:kpra...@aptaracorp.com wrote:
 I've to give this script to someone else department and they should
 not be able to modify or see the code. 

Ultimately, you can't prevent anyone seeing your source code. the best
you can do is make it harder to do so. (See
http://search.cpan.org/~smueller/PAR-1.000/lib/PAR/FAQ.pod#Can_PAR_comp
letely_hide_my_source_code?).

If you want to distribute your script as a standalone executable, the
PAR module or applications like Perl2Exe can help with that. If you just
want to obscure your script (i.e. your recipients already have Perl
installed), have a look at the source filtering modules like
Filter::Crypto.

HTH

-- 
Brian Raven 

Please consider the environment before printing this email.

This e-mail may contain confidential and/or privileged information. If you are 
not the intended recipient or have received this e-mail in error, please advise 
the sender immediately by reply e-mail and delete this message and any 
attachments without retaining a copy.

Any unauthorised copying, disclosure or distribution of the material in this 
e-mail is strictly forbidden.

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Use DLL files at Unix server

2010-04-23 Thread Jeff Saxton
Get the pdk and compile your source

Kprasad kpra...@aptaracorp.com wrote:


I've to give this script to someone else department and they should not be
able to modify or see the code.

Kanhaiya
- Original Message -
From: Brian Raven bra...@nyx.com
To: perl-unix-us...@listserv.activestate.com;
perl-win32-users@listserv.ActiveState.com
Sent: Friday, April 23, 2010 2:30 PM
Subject: RE: Use DLL files at Unix server



 From: perl-win32-users-boun...@listserv.activestate.com
 [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of
 Kprasad
 Sent: 23 April 2010 05:11
 To: rex njoku; perl-unix-us...@listserv.activestate.com;
 perl-win32-users@listserv.ActiveState.com
 Subject: Re: Use DLL files at Unix server

 Thankx a lot for your response.
 What else can we use at unix server instead of directly using .pl
 (source) file?

 What's wrong with using Perl source directly?

 Seriously, without knowing what you are trying to do, it is difficult to
 give advice.

 See http://catb.org/~esr/faqs/smart-questions.html.

 --
 Brian Raven

 Please consider the environment before printing this email.

 This e-mail may contain confidential and/or privileged information. If you
 are not the intended recipient or have received this e-mail in error,
 please advise the sender immediately by reply e-mail and delete this
 message and any attachments without retaining a copy.

 Any unauthorised copying, disclosure or distribution of the material in
 this e-mail is strictly forbidden.

 ___
 Perl-Win32-Users mailing list
 Perl-Win32-Users@listserv.ActiveState.com
 To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Use DLL files at Unix server

2010-04-23 Thread Bernard Tremblay

I suggest your read this : http://people.redhat.com/drepper/dsohowto.pdf
It's now recent, but it will give you answers.

Regards,

 BT

On 2010-04-22 09:41, Kprasad wrote:


  

  

  

  Hi

   

  Could anyone tell me that how to use DLL at Unix 
Operating system?

   

  Kanhaiya Prasad
  

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



  
_
Emmenez vos contacts faire un tour. 
http://go.microsoft.com/?linkid=9724472___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs