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 pg...@apache.org on 2005/09/12 05:32:08 UTC

svn commit: r280243 - in /perl/modperl/trunk: Changes lib/ModPerl/WrapXS.pm

Author: pgollucci
Date: Sun Sep 11 20:32:05 2005
New Revision: 280243

URL: http://svn.apache.org/viewcvs?rev=280243&view=rev
Log:
Correctly set the version of ModPerl::MethodLookup


Modified:
    perl/modperl/trunk/Changes
    perl/modperl/trunk/lib/ModPerl/WrapXS.pm

Modified: perl/modperl/trunk/Changes
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?rev=280243&r1=280242&r2=280243&view=diff
==============================================================================
--- perl/modperl/trunk/Changes (original)
+++ perl/modperl/trunk/Changes Sun Sep 11 20:32:05 2005
@@ -12,6 +12,10 @@
 
 =item 2.0.2-dev
 
+Correctly set the version of ModPerl::MethodLookup, previously,
+it was not set because of the way it was Generating via ModPerl::WrapXS.
+[Philip M. Gollucci]
+
 Improve the detection of whether or not we are in an mp2 build tree.
 This allows usage of ExtUtils::MakeMaker options such as PREFIX to
 not break the probe of mp2 build trees.

Modified: perl/modperl/trunk/lib/ModPerl/WrapXS.pm
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/WrapXS.pm?rev=280243&r1=280242&r2=280243&view=diff
==============================================================================
--- perl/modperl/trunk/lib/ModPerl/WrapXS.pm (original)
+++ perl/modperl/trunk/lib/ModPerl/WrapXS.pm Sun Sep 11 20:32:05 2005
@@ -766,9 +766,10 @@
     print $fh <<'EOF';
 
 use base qw(Exporter);
+use mod_perl2;
 
 our @EXPORT = qw(print_method print_module print_object);
-
+our $VERSION = $mod_perl2::VERSION;
 use constant MODULE => 0;
 use constant OBJECT  => 1;