Re: A problem with perldoc

2002-03-05 Thread Jenda Krynicky
From: Marc S Weintraub [EMAIL PROTECTED] I use a PC with Win98 SE and ActivePerl 5.6.1 Build 630 for my Perl development work. Whenever I try to run a perldoc query I see a slight pause followed by Bad command or file name. What have I failed to install or configure? How do

Re: A problem with perldoc

2002-03-05 Thread Lee Goddard
At 00:42 05/03/2002 -0500, Marc S Weintraub wrote: I use a PC with Win98 SE and ActivePerl 5.6.1 Build 630 for my Perl development work. Whenever I try to run a perldoc query I see a slight pause followed by Bad command or file name. What have I failed to install or configure? How do I fix it?

RE: Perl.exe, perlis.dll, and IIS

2002-03-05 Thread Peter Verhas
I may help you to avoid restart of the whole server. Visit the page http://peter.verhas.com/progs/c/nt/syscom/index.html to download and install the syscomsrv service that will let you drastically kill the inetinfo.exe process. This may help when the servioce does not stop. The IIS server by

avoid Perl modules?

2002-03-05 Thread Peter Verhas
I can not understand why one wants to avoid using a Perl module. If it is coded in C, maybe I can understand the lack of C compiler availability or knowledge to compile the module to binary. However when the module is written in Perl there is no point. If one wants to solve a problem, but wants

Re: avoid Perl modules?

2002-03-05 Thread Dirk Bremer
In my most humble opinion, performance. There is no guarantee that the module you want to use was written with performance in mind, and you may encounter situations where performance is a critical issue. There is also additional overhead involved for modules that export items. There may be

Perl 5.6 Win32::API trouble

2002-03-05 Thread Clarence Donath
Attempting to upgrade our machines to ActivePerl 5.6, we are experiencing trouble with Win32::API. As an example, please try this... use Win32::API; my $getosfhandle = new Win32::API('msvcrt', '_get_osfhandle', ['I'], 'N'); die undefined\n unless defined $getosfhandle; my $handle =

RE: avoid Perl modules?

2002-03-05 Thread Richard Z. Ward
Peter, I am no expert on modules and could be completely wrong about this but I have avoided using modules because I do not want to have to distribute them with my software. The perl script that my program uses runs in all environments (Unix, Linux, Windows, etc.). It runs well with modperl,

Re: avoid Perl modules?

2002-03-05 Thread Jeffrey
--- Peter Verhas [EMAIL PROTECTED] wrote: Is there any sound reason not to use modules? Yep. I write scripts that will be used by many of my co-workers. I cannot guarantee that they have specific modules installed, or that they are even using ActiveState Perl (the other option for my company

Re: avoid Perl modules?

2002-03-05 Thread Jeffrey
--- Peter Verhas [EMAIL PROTECTED] wrote: Is there any sound reason not to use modules? Yep. I write scripts that will be used by many of my co-workers. I cannot guarantee that they have specific modules installed, or that they are even using ActiveState Perl (the other option for my company

RE: avoid Perl modules?

2002-03-05 Thread Thomas Bätzler
Jeffrey [[EMAIL PROTECTED]] wrote: More often than not, I will pull the code directly from the module I want to use, if it's not too complex. I always give credit to the source, of course. In general, however, I agree -- and in my case I'm not actually re-writing something that someone

RE: avoid Perl modules?

2002-03-05 Thread Jeffrey
Any better suggestions? I understand the risk, but I have no better ideas. As I said, I can't guarantee the version or flavor of Perl being used. For a lot of the people running the script, they have little to no comprehension of Perl, and asking them to install modules would be more than a

RE: avoid Perl modules?

2002-03-05 Thread Jeffrey
As I mentioned in a post (that I just sent), this is not a possible option for me. :( But I agree that it would be the best solution. --- David Hares [EMAIL PROTECTED] wrote: All of which is a good arguement for Perlexe. I cannot even guarenttee that Perl is installed right, so the cost