What is an Ignore list?
Perl2exe
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > Perl web-programming > Perl2exe 21 May 2004 09:47:40

  Top users: 
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:

Perl2exe

Harry Jackson 30 May 2002 14:49:08
 
I am trying to compile a script to an executable in Win NT and getting the
following.

Converting 'Search_Remedy.pl' to Search_Remedy.exe
Warning: Can't locate Tie/Registry.pm at C:\Perl\site\lib\DB­D\Oracle.pm line
106
@INC = C:\Perl\lib, C:\Perl\site\lib, ., must be directory, not file)


I know I have this module missing and have been unable to find it on ASPN. I
have found the Win32::TieRegistry but not the one it wants.

These are the offending lines from Oracle.pm.

eval q{
require Tie::Registry;
$Tie::Registry::Reg­istry->Delimeter("/"­);
$hkey= $Tie::Registry::Reg­istry->{"LMachine/So­ftware/Oracle/"};


I have a Tie directory in both my Site an Lib directories but no joy.

I was also wondering why I have had to include all these implicitly in my
script to get it to work. I thought that including "use lib" would sort out
any dependencies.

use lib;
use Carp::Heavy;
use DBD::Oracle;
use Harry::Connect;

Is there a viable alternative to perl2exe on the market or is it the only
one out there at the moment

Harry






*******************­********************­********************­********************­******
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. +44 20 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications,­ its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.
*******************­********************­********************­********************­******
Add comment
Shishir K. Singh 30 May 2002 17:02:18 permanent link ]
 There's perl2app that comes bundled with the Perl Dev Kit on Active State. Unfortunately, the whole package comes with a price. Other than that, I am not sure if there are any other perl exe conversion pgm.


-----Original Message-----
From: Jackson, Harry [mailto:HJackson@colt-telecom.com]
Sent: Thursday, May 30, 2002 7:49 AM
To: 'beginners@perl.org­'
Subject: Perl2exe



I am trying to compile a script to an executable in Win NT and getting the
following.

Converting 'Search_Remedy.pl' to Search_Remedy.exe
Warning: Can't locate Tie/Registry.pm at C:\Perl\site\lib\DB­D\Oracle.pm line
106
@INC = C:\Perl\lib, C:\Perl\site\lib, ., must be directory, not file)


I know I have this module missing and have been unable to find it on ASPN. I
have found the Win32::TieRegistry but not the one it wants.

These are the offending lines from Oracle.pm.

eval q{
require Tie::Registry;
$Tie::Registry::Reg­istry->Delimeter("/"­);
$hkey= $Tie::Registry::Reg­istry->{"LMachine/So­ftware/Oracle/"};


I have a Tie directory in both my Site an Lib directories but no joy.

I was also wondering why I have had to include all these implicitly in my
script to get it to work. I thought that including "use lib" would sort out
any dependencies.

use lib;
use Carp::Heavy;
use DBD::Oracle;
use Harry::Connect;

Is there a viable alternative to perl2exe on the market or is it the only
one out there at the moment

Harry






*******************­********************­********************­********************­******
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. +44 20 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications,­ its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.
*******************­********************­********************­********************­******


--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
Add comment
Harry Jackson 30 May 2002 17:37:16 permanent link ]
 
-----Original Message-----> From: Shishir K. Singh [mailto:sksingh@synapsistech.com]>
There's perl2app that comes bundled with the Perl Dev Kit on > Active State. Unfortunately, the whole package comes with a > price. Other than that, I am not sure if there are any other > perl exe conversion pgm.

I might have known it. I have managed to get it working but am not really
that happy with it. Does anyone know what kind of work is involved in
writing something like perl2exe. I imagine it is well beyond my abilities
but it would be interesting to see how it is done.

Harry.


*******************­********************­********************­********************­******
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. +44 20 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications,­ its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.
*******************­********************­********************­********************­******
Add comment
Shishir K. Singh 30 May 2002 18:45:33 permanent link ]
 I was having similar problems with perl2exe sometime back. As far as your problem is concerned, I am not sure what module is being used. You seem to have mentioned something about TieRegistry which is under Win32. Wont' that warrant doing a "use Win32::TieRegistry"­ instead of the require that you are doing right now. As for the conversion to exe, I too would be interested in knowing how it work / how it's done. Guys, any pointers??



-----Original Message-----
From: Jackson, Harry [mailto:HJackson@colt-telecom.com]
Sent: Thursday, May 30, 2002 10:37 AM
To: 'beginners@perl.org­'
Subject: RE: Perl2exe



-----Original Message-----> From: Shishir K. Singh [mailto:sksingh@synapsistech.com]>
There's perl2app that comes bundled with the Perl Dev Kit on > Active State. Unfortunately, the whole package comes with a > price. Other than that, I am not sure if there are any other > perl exe conversion pgm.

I might have known it. I have managed to get it working but am not really
that happy with it. Does anyone know what kind of work is involved in
writing something like perl2exe. I imagine it is well beyond my abilities
but it would be interesting to see how it is done.

Harry.


*******************­********************­********************­********************­******
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. +44 20 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications,­ its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.
*******************­********************­********************­********************­******


--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
Add comment
Junaid Najamuddin 30 May 2002 19:58:51 permanent link ]
 I have been using this for a long time and it works fine with me
Please visit the following location and download it
http://www.indigost­ar.com/perl2exe.htm

junaid


-----Original Message-----
From: Jackson, Harry [mailto:HJackson@colt-telecom.com]
Sent: Thursday, May 30, 2002 9:37 AM
To: 'beginners@perl.org­'
Subject: RE: Perl2exe



-----Original Message-----> From: Shishir K. Singh [mailto:sksingh@synapsistech.com]>
There's perl2app that comes bundled with the Perl Dev Kit on > Active State. Unfortunately, the whole package comes with a > price. Other than that, I am not sure if there are any other > perl exe conversion pgm.

I might have known it. I have managed to get it working but am not really
that happy with it. Does anyone know what kind of work is involved in
writing something like perl2exe. I imagine it is well beyond my abilities
but it would be interesting to see how it is done.

Harry.


*******************­********************­********************­*****************
*********
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. +44 20 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications,­ its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.
*******************­********************­********************­*****************
*********


--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
Add comment
Jenda Krynicky 3 June 2002 14:51:47 permanent link ]
 From: "Jackson, Harry" <HJackson@colt-tele­com.com>
I am trying to compile a script to an executable in Win NT and getting> the following.>
Converting 'Search_Remedy.pl' to Search_Remedy.exe> Warning: Can't locate Tie/Registry.pm at> C:\Perl\site\lib\DB­D\Oracle.pm line 106 @INC = C:\Perl\lib,> C:\Perl\site\lib, ., must be directory, not file)>
I know I have this module missing and have been unable to find it on> ASPN. I have found the Win32::TieRegistry but not the one it wants.

If you look better at the code in DBD::Oracle.pm you'll see that the
module uses Win32::TieRegistry and only if that one is not found
and it doesn't succeed to open the HKLM\Software\Oracl­e does it
try Tie::Registry instead.

perl2exe cannot know that so it warns you that it was not able to
find a module that might be needed. It doesn't have any way of
knowing it will never be.

I believe perl2exe will create the .exe anyway, if it does not see it's
docs and forbide it to try to incorporate Tie::Registry in the .exe.

Jenda

=========== Jenda@Krynicky.cz == http://Jenda.Krynic­ky.cz ==========
There is a reason for living. There must be. I've seen it somewhere.
It's just that in the mess on my table ... and in my brain
I can't find it.
--- me
Add comment
Manish U 20 May 2004 09:11:11 permanent link ]
 Hi,

Can any one give me the url where i can get a free version of perl2exe.

Regards
Manish U

Disclaimer Statement:
-------------------­--------------------­--------------------­-----------------
-------------------­--------------------­--------------------­---------------
The information contained in this message is confidential and proprietary to
Datamatics Technologies Limited, Mumbai, India. It is intended only for the
use of the individual or entity to whom it is addressed. If you are not the
intended recipient, or the authorized agent thereof, you are hereby notified
that any disclosure, use, distribution, dissemination or copying in any form
of any information contained in this message is strictly prohibited. If you
have received this message by mistake or error, please notify us immediately
by return email to the sender or by fax on number +91-22-28291673 and delete
all copies of the original message.
-------------------­--------------------­--------------------­-----------------
-------------------­--------------------­--------------------­---------------


--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



Add comment
Ramprasad A Padmanabhan 20 May 2004 09:42:44 permanent link ]
 There is none of which I know, I too searched a lot about 2yrs ago. And
even the paid version is a pain to use. Converting perl files to
binaries is a hot topic of discussion but I dont think this is a very
successful idea

Ram

On Thu, 2004-05-20 at 11:41, Manish U wrote:> Hi,>
Can any one give me the url where i can get a free version of perl2exe.>
Regards> Manish U>
Disclaimer Statement:> -------------------­--------------------­--------------------­-----------------> -------------------­--------------------­--------------------­---------------> The information contained in this message is confidential and proprietary to> Datamatics Technologies Limited, Mumbai, India. It is intended only for the> use of the individual or entity to whom it is addressed. If you are not the> intended recipient, or the authorized agent thereof, you are hereby notified> that any disclosure, use, distribution, dissemination or copying in any form> of any information contained in this message is strictly prohibited. If you> have received this message by mistake or error, please notify us immediately> by return email to the sender or by fax on number +91-22-28291673 and delete> all copies of the original message.> -------------------­--------------------­--------------------­-----------------> -------------------­--------------------­--------------------­--------------->



--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



Add comment
Javeed Sar 20 May 2004 09:49:32 permanent link ]
 Have a look at this site

www.indigostar.com

Regards
javeed


****** There's no place like ~/ *******





-----Original Message-----
From: Ramprasad A Padmanabhan [mailto:ramprasad.padmanabhan@oracle.com]
Sent: Thursday, May 20, 2004 12:13 PM
To: Manish U
Cc: Beginners
Subject: Re: Perl2exe


There is none of which I know, I too searched a lot about 2yrs ago. And
even the paid version is a pain to use. Converting perl files to
binaries is a hot topic of discussion but I dont think this is a very
successful idea

Ram

On Thu, 2004-05-20 at 11:41, Manish U wrote:> Hi,>
Can any one give me the url where i can get a free version of > perl2exe.>
Regards> Manish U>
Disclaimer Statement:> -------------------­--------------------­--------------------­-----------> ------>
-------------------­--------------------­--------------------­-------------
--> The information contained in this message is confidential and
proprietary to> Datamatics Technologies Limited, Mumbai, India. It is intended only
for the> use of the individual or entity to whom it is addressed. If you are
not the> intended recipient, or the authorized agent thereof, you are hereby
notified> that any disclosure, use, distribution, dissemination or copying in
any form> of any information contained in this message is strictly prohibited.
If you> have received this message by mistake or error, please notify us
immediately> by return email to the sender or by fax on number +91-22-28291673 and
delete> all copies of the original message.>
-------------------­--------------------­--------------------­-------------
---->
-------------------­--------------------­--------------------­-------------
-->



--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



Add comment
Ramprasad A Padmanabhan 20 May 2004 10:06:40 permanent link ]
 Precisely,
I have even bought 'perl2exe' from indigostar. But we had such a
headache creating exes of some heavy files ( mostly those that required
XML::Parser or JABBER modules ) that we would give up and ship the
source.

Thanks
Ram
( BTW do U work for indigostar ? )

On Thu, 2004-05-20 at 12:19, SAR, JAVEED (STSD) wrote:> Have a look at this site>
Regards> javeed>
****** There's no place like ~/ *******>
-----Original Message-----> From: Ramprasad A Padmanabhan [mailto:ramprasad.padmanabhan@oracle.com] > Sent: Thursday, May 20, 2004 12:13 PM> To: Manish U> Cc: Beginners> Subject: Re: Perl2exe>
There is none of which I know, I too searched a lot about 2yrs ago. And> even the paid version is a pain to use. Converting perl files to> binaries is a hot topic of discussion but I dont think this is a very> successful idea>
On Thu, 2004-05-20 at 11:41, Manish U wrote:> > Hi,> >
Can any one give me the url where i can get a free version of > > perl2exe.> >
Regards> > Manish U> >
Disclaimer Statement:> > -------------------­--------------------­--------------------­-----------> > ------> >
-------------------­--------------------­--------------------­-------------> --> > The information contained in this message is confidential and> proprietary to> > Datamatics Technologies Limited, Mumbai, India. It is intended only> for the> > use of the individual or entity to whom it is addressed. If you are> not the> > intended recipient, or the authorized agent thereof, you are hereby> notified> > that any disclosure, use, distribution, dissemination or copying in> any form> > of any information contained in this message is strictly prohibited.> If you> > have received this message by mistake or error, please notify us> immediately> > by return email to the sender or by fax on number +91-22-28291673 and> delete> > all copies of the original message.> >
-------------------­--------------------­--------------------­-------------> ----> >
-------------------­--------------------­--------------------­-------------> --> >



--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



Add comment
Javeed Sar 20 May 2004 10:08:37 permanent link ]
 
No buddy, I work for the one and only one "HP".

Regards
javeed


****** There's no place like ~/ *******





-----Original Message-----
From: Ramprasad A Padmanabhan [mailto:ramprasad.padmanabhan@oracle.com]
Sent: Thursday, May 20, 2004 12:37 PM
To: SAR, JAVEED (STSD)
Cc: Manish U; Beginners
Subject: RE: Perl2exe


Precisely,
I have even bought 'perl2exe' from indigostar. But we had such a
headache creating exes of some heavy files ( mostly those that required
XML::Parser or JABBER modules ) that we would give up and ship the
source.

Thanks
Ram
( BTW do U work for indigostar ? )

On Thu, 2004-05-20 at 12:19, SAR, JAVEED (STSD) wrote:> Have a look at this site>
Regards> javeed>
****** There's no place like ~/ *******>
-----Original Message-----> From: Ramprasad A Padmanabhan > [mailto:ramprasad.padmanabhan@oracle.com]> Sent: Thursday, May 20, 2004 12:13 PM> To: Manish U> Cc: Beginners> Subject: Re: Perl2exe>
There is none of which I know, I too searched a lot about 2yrs ago. > And even the paid version is a pain to use. Converting perl files to > binaries is a hot topic of discussion but I dont think this is a very > successful idea>
On Thu, 2004-05-20 at 11:41, Manish U wrote:> > Hi,> >
Can any one give me the url where i can get a free version of> > perl2exe.> >
Regards> > Manish U> >
Disclaimer Statement:> > -------------------­--------------------­--------------------­---------> > --> > ------> >
-------------------­--------------------­--------------------­-----------> --> --> > The information contained in this message is confidential and> proprietary to> > Datamatics Technologies Limited, Mumbai, India. It is intended only> for the> > use of the individual or entity to whom it is addressed. If you are> not the> > intended recipient, or the authorized agent thereof, you are hereby> notified> > that any disclosure, use, distribution, dissemination or copying in> any form> > of any information contained in this message is strictly prohibited.> If you> > have received this message by mistake or error, please notify us> immediately> > by return email to the sender or by fax on number +91-22-28291673 > > and> delete> > all copies of the original message.> >
-------------------­--------------------­--------------------­-----------> --> ----> >
-------------------­--------------------­--------------------­-----------> --> --> >



--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



Add comment
Peter Scott 20 May 2004 19:56:45 permanent link ]
 In article <HJEHINOMPNOCJNHEHC­JEOEBACEAA.2umanish@­sun20.datamatics.com­>,
2umanish@sun20.data­matics.com (Manish U) writes:>Hi,>
Can any one give me the url where i can get a free version of perl2exe.

Consider this instead:

http://search.cpan.­org/~autrijus/PAR-0.­80/lib/PAR.pm

--
Peter Scott
http://www.perldebu­gged.com/
*** NEW *** http://www.perlmedi­c.com/

--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



Add comment
Toby Stuart 21 May 2004 09:47:40 permanent link ]
 
-----Original Message-----> From: peter@PSDT.com [mailto:p­eter@PSDT.com]> Sent: Friday, May 21, 2004 2:57 AM> To: beginners@perl.org>­ Subject: Re: Perl2exe>
In article > <HJEHINOMPNOCJNHEHC­JEOEBACEAA.2umanish@­sun20.datamatics.com­>,> 2umanish@sun20.data­matics.com (Manish U) writes:> >Hi,> >
Can any one give me the url where i can get a free version > of perl2exe.>
Consider this instead:>

Yes. I use PAR alot and it's great! I've never had a problem with it.

--
To unsubscribe, e-mail: beginners-unsubscri­be@perl.org
For additional commands, e-mail: beginners-help@perl­.org
<http://learn.perl.­org/> <http://learn.perl.­org/first-response>



Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > Perl web-programming > Perl2exe 21 May 2004 09:47:40

see also:
extracting elements from arrays of…
FW: How long can $_ be?
pass tests:
Тест - бяка
see also:
here so quietly and boring! on beon...
boring..boring...boring :-| where p...
mego day!

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .