[svn:modperl-modules] rev 199 - Apache-Scoreboard-1.0/trunk

[email protected] 21 Mar 2005 18:57:03 -0000
Newsgroups perl.modperl.modules.svn
Message-ID <[email protected]>
Author: stas
Date: Mon Mar 21 10:57:02 2005
New Revision: 199

Modified:
   Apache-Scoreboard-1.0/trunk/Scoreboard.pm
Log:
need to load Carp before using it


Modified: Apache-Scoreboard-1.0/trunk/Scoreboard.pm
==============================================================================
--- Apache-Scoreboard-1.0/trunk/Scoreboard.pm	(original)
+++ Apache-Scoreboard-1.0/trunk/Scoreboard.pm	Mon Mar 21 10:57:02 2005
@@ -3,6 +3,8 @@
 use strict;
 use constant DEBUG => 0;
 
+use Carp;
+
 BEGIN {
     use mod_perl;
     die "mod_perl < 2.0 is required" unless $mod_perl::VERSION < 1.99;