/[Apache-SVN]/perl/modperl/trunk/lib/ModPerl/Code.pm
ViewVC logotype

Diff of /perl/modperl/trunk/lib/ModPerl/Code.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- perl/modperl/trunk/lib/ModPerl/Code.pm	2005/03/18 00:38:49	157999
+++ perl/modperl/trunk/lib/ModPerl/Code.pm	2005/03/18 00:59:38	158000
@@ -501,10 +501,15 @@ my %trace = (
 sub generate_trace {
     my($self, $h_fh) = @_;
 
-    my $v = $self->{build}->{VERSION};
+    my $v     = $self->{build}->{VERSION};
+    my $api_v = $self->{build}->{API_VERSION};
 
     print $h_fh qq(#define MP_VERSION_STRING "mod_perl/$v"\n);
 
+    # this needs to be a string, not an int, because of the
+    # macro definition.  patches welcome.
+    print $h_fh qq(#define MP_API_VERSION "$api_v"\n);
+
     my $i = 1;
     my @trace = sort keys %trace;
     my $opts = join '', @trace;

 

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26