You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ge...@apache.org on 2005/04/08 06:29:40 UTC

svn commit: r160512 - perl/modperl/trunk/Changes

Author: geoff
Date: Thu Apr  7 21:29:38 2005
New Revision: 160512

URL: http://svn.apache.org/viewcvs?view=rev&rev=160512
Log:
more shuffling - place MP_INST_APACHE2 at the top since this
is what people will likely hit first

Modified:
    perl/modperl/trunk/Changes

Modified: perl/modperl/trunk/Changes
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?view=diff&r1=160511&r2=160512
==============================================================================
--- perl/modperl/trunk/Changes (original)
+++ perl/modperl/trunk/Changes Thu Apr  7 21:29:38 2005
@@ -18,8 +18,10 @@
      1.99_XX. Please read the below changes carefully.
     ***************************************************
 
-fix a bug when a non-threaded perl is used and anonymous sub is pushed
-at the server startup (the CV wasn't surviving) [Stas]
+remove MP_INST_APACHE2 installation option and Apache2.pm - all
+mod_perl related files will now be installed so they are visible
+via standard @INC.  also, refuse to install over mod_perl 2 versions
+less than 1.999_22.  [Geoffrey Young]
 
 s/Apache::/Apache2::/g and s/mod_perl/mod_perl2/g in all module
 APIs.  so, Apache::RequestRec is now Apache2::RequestRec,
@@ -29,17 +31,15 @@
 to APR::Const.  for example, Apache:OK is now Apache2::Const::OK and
 APR::SUCCESS is now APR::Const::SUCCESS.  [Geoffrey Young]
 
-remove MP_INST_APACHE2 installation option and Apache2.pm - all
-mod_perl related files will now be installed so they are visible
-via standard @INC.  also, refuse to install over mod_perl 2 versions
-less than 1.999_22.  [Geoffrey Young]
-
 add $ENV{MOD_PERL_API_VERSION} as something that clearly distinguishes
 which mod_perl version is being used at request time.  [Geoffrey Young]
 
 rename Apache->request() to Apache2::RequestUtil->request(), and
 Apache->server() to Apache2::ServerUtil->server()
 [Geoffrey Young]
+
+fix a bug when a non-threaded perl is used and anonymous sub is pushed
+at the server startup (the CV wasn't surviving) [Stas]
 
 Make sure that CPAN shell doesn't triple over usage of
 $ExtUtils::MakeMaker::VERSION [Randy Kobes]