[Apache-dispatch-devel] SF.net SVN: apache-dispatch: [54] trunk
Brought to you by:
geoffrey_young,
phred_moyer
|
From: <phr...@us...> - 2006-10-24 05:23:18
|
Revision: 54
http://svn.sourceforge.net/apache-dispatch/?rev=54&view=rev
Author: phred_moyer
Date: 2006-10-23 22:23:15 -0700 (Mon, 23 Oct 2006)
Log Message:
-----------
Fixed a bug with the Makefile.PL where mp1 was specified, but mp2 was
installed.
Ready 0.10_01 release
Modified Paths:
--------------
trunk/Changes
trunk/Makefile.PL
trunk/lib/Apache/Dispatch.pm
trunk/lib/Apache2/Dispatch.pm
Modified: trunk/Changes
===================================================================
--- trunk/Changes 2006-09-02 23:51:12 UTC (rev 53)
+++ trunk/Changes 2006-10-24 05:23:15 UTC (rev 54)
@@ -1,6 +1,6 @@
Revision history for Perl extension Apache::Dispatch
-0.10 06.07.2006
+0.10_01 10.23.2006
- move common methods to Apache::Dispatch::Util and adjust @ISA for
Apache*::Dispatch modules to use common methods via inheritance - fred
- deprecated $Apache::Dispatch::DEBUG directive per dev notes in favor
Modified: trunk/Makefile.PL
===================================================================
--- trunk/Makefile.PL 2006-09-02 23:51:12 UTC (rev 53)
+++ trunk/Makefile.PL 2006-10-24 05:23:15 UTC (rev 54)
@@ -71,7 +71,7 @@
my %prereq = ();
-my %makefile_params = ( 'VERSION' => '0.10', );
+my %makefile_params = ( 'VERSION' => '0.10_01', );
if ( $mp_wanted == 2 ) { # mod_perl2 specific makefile
$prereq{'mod_perl2'} = 1.99023; # this covers the naming change
@@ -237,7 +237,7 @@
elsif ( $wanted == 1 ) {
eval { require mod_perl };
no warnings qw(uninitialized);
- if ( $mod_perl::VERSION > 1.99 || $@ ) {
+ if ( $@ ) {
die "You don't seem to have mod_perl 1.0 installed, see INSTALL\n";
}
else {
Modified: trunk/lib/Apache/Dispatch.pm
===================================================================
--- trunk/lib/Apache/Dispatch.pm 2006-09-02 23:51:12 UTC (rev 53)
+++ trunk/lib/Apache/Dispatch.pm 2006-10-24 05:23:15 UTC (rev 54)
@@ -11,7 +11,7 @@
use strict;
use warnings;
-our $VERSION = '0.10';
+our $VERSION = '0.10_01';
use mod_perl 1.2401;
use Apache::Constants qw(OK DECLINED SERVER_ERROR);
Modified: trunk/lib/Apache2/Dispatch.pm
===================================================================
--- trunk/lib/Apache2/Dispatch.pm 2006-09-02 23:51:12 UTC (rev 53)
+++ trunk/lib/Apache2/Dispatch.pm 2006-10-24 05:23:15 UTC (rev 54)
@@ -9,7 +9,7 @@
use strict;
use warnings;
-$Apache2::Dispatch::VERSION = '0.10';
+$Apache2::Dispatch::VERSION = '0.10_01';
use mod_perl2 1.99023;
use Apache2::Const -compile => qw(OK DECLINED SERVER_ERROR);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|