Revision: 24
Author: phred_moyer
Date: 2006-04-22 15:44:42 -0700 (Sat, 22 Apr 2006)
ViewCVS: http://svn.sourceforge.net/apache-dispatch/?rev=24&view=rev
Log Message:
-----------
- commit some of the recent changes while getting this to play nicely with xs
Modified Paths:
--------------
trunk/lib/Apache/Dispatch.pm
Modified: trunk/lib/Apache/Dispatch.pm
===================================================================
--- trunk/lib/Apache/Dispatch.pm 2006-04-22 22:37:52 UTC (rev 23)
+++ trunk/lib/Apache/Dispatch.pm 2006-04-22 22:44:42 UTC (rev 24)
@@ -11,6 +11,8 @@
use strict;
use warnings;
+my $VERSION = '0.10';
+
my @directives = (
#------------------------------------------------------------------
@@ -118,7 +120,7 @@
use Apache::Constants qw(OK DECLINED SERVER_ERROR);
use Apache::Log;
-$Apache::Dispatch::PUREPERL = 'PUREPERL'; # set during perl Makefile.PL
+$Apache::Dispatch::PUREPERL=0; # set during perl Makefile.PL
# create global hash to hold the modification times of the modules
my %stat = ();
@@ -127,7 +129,7 @@
require Apache::ModuleConfig;
require DynaLoader;
@Apache::Dispatch::ISA = qw(DynaLoader);
- Apache::Dispatch->bootstrap($Apache::Dispatch::VERSION);
+ __PACKAGE__->bootstrap($VERSION);
}
sub directives {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|