RE: Visual Studio 2008 and ActiveState Perl 5.10 updates

2007-12-28 Thread Jan Dubois
On Fri, 28 Dec 2007, Randy Kobes wrote: > On Fri, 28 Dec 2007, Jan Dubois wrote: > > Therefore I'm genuinely interested to learn where the problems are > > if you build say Apache with VS2008, Perl with VC6 and e.g. mod_perl > > with VC7. I would expect this to work just fine if we ignore the > >

Re: Visual Studio 2008 and ActiveState Perl 5.10 updates

2007-12-28 Thread William A. Rowe, Jr.
Jan Dubois wrote: On Fri, 28 Dec 2007, William A. Rowe, Jr. wrote: The obvious question is; what are your include libraries for that module? The modern compiler's? (e.g. studio 200X?) The SDK's? Or continue to build with VC 6? That Platform SDK headers (in case the module uses APIs that were i

RE: Visual Studio 2008 and ActiveState Perl 5.10 updates

2007-12-28 Thread Randy Kobes
On Fri, 28 Dec 2007, Jan Dubois wrote: On Fri, 28 Dec 2007, William A. Rowe, Jr. wrote: [ ... ] My instinct, with 2008 adding the new SDK features for apr such as multicast group filtering, and the continued availability of a 2008 'express'/'lite' free version, is to take httpd 2.4 (3.0?) bina

RE: Visual Studio 2008 and ActiveState Perl 5.10 updates

2007-12-28 Thread Jan Dubois
On Fri, 28 Dec 2007, William A. Rowe, Jr. wrote: > Jan Dubois wrote: >> I still haven't seen a compelling argument why someone wants to move >> away from using MSVCRT.dll (and then continue switching CRTs then >> every other year). > > The obvious question is; what are your include libraries for th

Re: mod_perl, ENV{'TZ'}, and localtime

2007-12-28 Thread Michael Schout
Kirk Noda wrote: > The thread seemed to die off. Still, is there a way to use $ENV{TZ} to > modify the behavior of localtime? The reason this does not work under modperl version 2.0 is because under handler "perl-script", %ENV is untied from the C environment. The localtime() function is impleme

Re: Visual Studio 2008 and ActiveState Perl 5.10 updates

2007-12-28 Thread William A. Rowe, Jr.
Jan Dubois wrote: The initial switch away from MSVCRT.dll was due to a conflict inside Microsoft between the Windows and the VC++ teams: MSVCRT.dll has become so important to the operation of Windows itself that the compiler team was no longer allowed to update it; ownership had been transferred

RE: Visual Studio 2008 and ActiveState Perl 5.10 updates

2007-12-28 Thread Jan Dubois
On Fri, 28 Dec 2007, William A. Rowe, Jr. wrote: > Studio 2008, true to form, proves that MS is incapable of keeping > around a stdc library any longer than one product cycle. Yes, our long > awaited (not) MSVCR90 is here. You can expect a new runtime library version for each compiler release from

Re: Can't use Crypt::RSA

2007-12-28 Thread Jonathan Vanasco
try using Crypt::OpenSSL::RSA its a little faster. there is a memory leak in it, but the max- requests directive will make it pretty inconsequential. On Dec 28, 2007, at 5:37 AM, arnab wrote: Hi Everyone, I'm using a small script to use the Crypt::RSA module under windows using Active

Correct way to send http status code 206 -Partial content?

2007-12-28 Thread Hemant Bist
Hi, What is the correct way to send http status code of 206 from from Modperl Registry script [In modperl2/apache2]? I searched the modperl site but did not find any examples. I looked at the following redirect example [by setting $r->status(Apache2::Const::HTTP_PARTIAL_CONTENT) and returning Apa

mod_perl, ENV{'TZ'}, and localtime

2007-12-28 Thread Kirk Noda
Hello, I'd like to reference the Tues 03 Oct '06 thread with subject: RE: Using ENV{'TZ'} in mod_perl http://mail-archives.apache.org/mod_mbox/perl-modperl/200610.mbox/browser The thread seemed to die off. Still, is there a way to use $ENV{TZ} to modify the behavior of localtime? I get the

DBD::mysql library issue on mod_perl2/Leopard

2007-12-28 Thread Hendrik Van Belleghem
Hi all, I'm having some trouble with DBD::mysql under mod_perl2 on Leopard. The build process when just fine, make test didn't show any errors and running it in console and as CGI didn't show any errors. I already tried adding "PerlSetEnv LD_LIBRARY_PATH '/usr/local/mysql/lib/mysql/:/usr/lib'" and

Visual Studio 2008 and ActiveState Perl 5.10 updates

2007-12-28 Thread William A. Rowe, Jr.
Well folks, here's the news... Studio 2008, true to form, proves that MS is incapable of keeping around a stdc library any longer than one product cycle. Yes, our long awaited (not) MSVCR90 is here. Just to put it in perspective, cross-library malloc/free, stdio and some other facilities are ti

Re: Can't use Crypt::RSA

2007-12-28 Thread Randy Kobes
On Fri, 28 Dec 2007, Michael Peters wrote: Btw, ActiveState seems pretty busted right now for a whole lot of things. http://use.perl.org/~Alias/journal/35219 Granted this is 5.10 (mod_perl itself doesn't quite work yet with 5.10) but AS 5.8 has similar problems, just not as many. For the

Re: Can't use Crypt::RSA

2007-12-28 Thread Michael Peters
arnab wrote: > Hi Everyone, > > I'm using a small script to use the Crypt::RSA module under windows using > Active Perl v5.8.8 but it is showing Perl Command Line Interpreter has > encountered a problem and needs to close... None of these things has anything to do with mod_perl. Try an Active St

Can't use Crypt::RSA

2007-12-28 Thread arnab
Hi Everyone, I'm using a small script to use the Crypt::RSA module under windows using Active Perl v5.8.8 but it is showing Perl Command Line Interpreter has encountered a problem and needs to close... My script # #!/usr/bin/perl use strict; use warnings; use Cry