geoff 2003/06/04 09:50:58
Modified: . Changes Log: renamed the private modperl_module_config_get_obj function to modperl_module_config_create_obj, since the logic creates the object but doesn't dig it out if it already exists. then, moved logic from mpxs_Apache__Module_get_config into a new public C function that reused the old name, modperl_module_config_get_obj. while Apache::Module->get_config exists as a wrapper to return the object to Perl space, now C/XS folks can also access the object directly with the public function. Submitted by: geoff Reviewed by: stas Revision Changes Path 1.192 +10 -0 modperl-2.0/Changes Index: Changes =================================================================== RCS file: /home/cvs/modperl-2.0/Changes,v retrieving revision 1.191 retrieving revision 1.192 diff -u -r1.191 -r1.192 --- Changes 3 Jun 2003 00:09:04 -0000 1.191 +++ Changes 4 Jun 2003 16:50:58 -0000 1.192 @@ -12,6 +12,16 @@ =item 1.99_10-dev +renamed the private modperl_module_config_get_obj function to +modperl_module_config_create_obj, since the logic creates +the object but doesn't dig it out if it already exists. then, +moved logic from mpxs_Apache__Module_get_config into a new public +C function that reused the old name, modperl_module_config_get_obj. +while Apache::Module->get_config exists as a wrapper to return the +object to Perl space, now C/XS folks can also access the object +directly with the public function. +[Geoffrey Young] + Apache::Reload: add a new config variable: ReloadConstantRedefineWarnings to optionally shut off the constant sub redefine warnings [Stas]