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 do...@hyperreal.org on 1999/01/28 18:55:53 UTC

cvs commit: modperl/src/modules/perl perl_util.c

dougm       99/01/28 09:55:52

  Modified:    .        Changes
               src/modules/perl perl_util.c
  Log:
  fix $ENV{MOD_PERL} value
  
  Revision  Changes    Path
  1.260     +2 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.259
  retrieving revision 1.260
  diff -u -r1.259 -r1.260
  --- Changes	1999/01/28 06:25:05	1.259
  +++ Changes	1999/01/28 17:55:47	1.260
  @@ -8,6 +8,8 @@
   
   =item 1.18_01-dev
   
  +fix $ENV{MOD_PERL} value
  +
   =item 1.18 - January 27, 1999
   
   if -DAPACHE_PERL5LIB is defined, feed the paths to @INC at startup
  
  
  
  1.27      +1 -1      modperl/src/modules/perl/perl_util.c
  
  Index: perl_util.c
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/perl_util.c,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- perl_util.c	1999/01/18 04:25:58	1.26
  +++ perl_util.c	1999/01/28 17:55:50	1.27
  @@ -608,7 +608,7 @@
       untie_env;
       if(!hv_exists(hv, "MOD_PERL", 8)) {
           hv_store(hv, "MOD_PERL", 8,
  -                 newSVpv("mod_perl/1.17_01-dev",0), FALSE);
  +                 newSVpv(MOD_PERL_STRING_VERSION,0), FALSE);
           hv_store(hv, "GATEWAY_INTERFACE", 17,
                    newSVpv("CGI-Perl/1.1",0), FALSE);
       }