Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_cmd.cmodperl_interp.c

2003-03-27 Thread Stas Bekman
Geoffrey Young wrote: [EMAIL PROTECTED] wrote: stas2003/03/24 23:51:08 Modified:src/modules/perl mod_perl.c modperl_cmd.c modperl_interp.c Log: move the modperl_interp_init() trace inside the function itself this change throws the following error for me modperl_interp.c: In

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_cmd.cmodperl_interp.c

2003-03-27 Thread Geoffrey Young
[EMAIL PROTECTED] wrote: stas2003/03/24 23:51:08 Modified:src/modules/perl mod_perl.c modperl_cmd.c modperl_interp.c Log: move the modperl_interp_init() trace inside the function itself this change throws the following error for me modperl_interp.c: In function `modperl_interp

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c mod_perl.h

2002-06-03 Thread Stas Bekman
[EMAIL PROTECTED] wrote: > dougm 2002/06/03 16:41:18 > > Modified:src/modules/perl mod_perl.c mod_perl.h > Log: > add MODPERL2 config define, as if the server had been started with -DMODPERL2 > > Revision ChangesPath > 1.121 +10 -2 modperl-2.0/src/modules/perl/

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_perl.c modperl_perl.h

2001-10-09 Thread Stas Bekman
[EMAIL PROTECTED] wrote: > dougm 01/10/08 17:13:00 > > Modified:src/modules/perl mod_perl.c modperl_perl.c modperl_perl.h > Log: > *CORE::GLOBAL::exit = \&ModPerl::Util::exit Is there a way to freeze *CORE::GLOBAL::exit, once you set it? Otherwise some code can set it to a di

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_perl.cmodperl_perl.h

2001-10-09 Thread Doug MacEachern
On Tue, 9 Oct 2001, Stas Bekman wrote: > all I wanted to say that somebody will run a script that mungles > *CORE::GLOBAL::exit. Since *CORE::GLOBAL:: is relatively new, I've > called it modern :) well if somebody really wants to mess with it, thats up to them. > but I understand, it doesn'

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_perl.c modperl_perl.h

2001-10-09 Thread Stas Bekman
>>I'm thinking of some modern registry script as an example. >> > > such as? all I wanted to say that somebody will run a script that mungles *CORE::GLOBAL::exit. Since *CORE::GLOBAL:: is relatively new, I've called it modern :) but I understand, it doesn't matter whether it's a script or a

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_perl.cmodperl_perl.h

2001-10-09 Thread Doug MacEachern
On Tue, 9 Oct 2001, Stas Bekman wrote: > Is there a way to freeze *CORE::GLOBAL::exit, once you set it? no. > Otherwise some code can set it to a different value and wreck havoc in > the whole system. then they get what they deserve. > I'm thinking of some modern registry script as an examp

cvs commit: modperl-2.0/src/modules/perl mod_perl.c modperl_global.c modperl_global.h modperl_util.c

2001-05-03 Thread dougm
dougm 01/05/03 22:49:20 Modified:src/modules/perl mod_perl.c modperl_global.c modperl_global.h modperl_util.c Log: add globals for server_rec and threaded_mpm Revision ChangesPath 1.52 +9 -3 modperl-2.0/src/modules/perl/mod_perl.c

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c

2001-04-12 Thread Eric Cholet
--On 12/04/01 09:20 -0400 Vivek Khera wrote: >> "EC" == Eric Cholet <[EMAIL PROTECTED]> writes: > >>> -if (handles = modperl_xs_dl_handles_get(cdata->pool)) { >>> +if ((handles = modperl_xs_dl_handles_get(cdata->pool))) { >>> modperl_xs_dl_handles_close(handles); > > EC> I did fixed

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c

2001-04-12 Thread Doug MacEachern
On Thu, 12 Apr 2001, Vivek Khera wrote: > > "EC" == Eric Cholet <[EMAIL PROTECTED]> writes: > > >> -if (handles = modperl_xs_dl_handles_get(cdata->pool)) { > >> +if ((handles = modperl_xs_dl_handles_get(cdata->pool))) { > >> modperl_xs_dl_handles_close(handles); > > EC> I did fixed

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c

2001-04-12 Thread Vivek Khera
> "EC" == Eric Cholet <[EMAIL PROTECTED]> writes: >> -if (handles = modperl_xs_dl_handles_get(cdata->pool)) { >> +if ((handles = modperl_xs_dl_handles_get(cdata->pool))) { >> modperl_xs_dl_handles_close(handles); EC> I did fixed unbalanced parens, you just added another level of pare

Re: cvs commit: modperl-2.0/src/modules/perl mod_perl.c

2001-04-12 Thread Eric Cholet
--On 12/04/01 01:03 + [EMAIL PROTECTED] wrote: > dougm 01/04/11 18:03:14 > > Modified:src/modules/perl mod_perl.c > Log: > i swear eric did this already > > Revision ChangesPath > 1.45 +1 -1 modperl-2.0/src/modules/perl/mod_perl.c > > Index: mod_perl.c >