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 1998/12/01 00:14:59 UTC

cvs commit: modperl/apaci mod_perl.config.sh

dougm       98/11/30 15:14:59

  Modified:    .        Changes Makefile.PL
               apaci    mod_perl.config.sh
  Log:
  removed PERLV define, just use patchlevel.h's defines
  
  Revision  Changes    Path
  1.218     +2 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /export/home/cvs/modperl/Changes,v
  retrieving revision 1.217
  retrieving revision 1.218
  diff -u -r1.217 -r1.218
  --- Changes	1998/11/30 14:59:42	1.217
  +++ Changes	1998/11/30 23:14:56	1.218
  @@ -8,6 +8,8 @@
   
   =item 1.16_02-dev
   
  +removed PERLV define, just use patchlevel.h's defines
  +
   fix bug w/ push_handlers(PerlCleanupHandler => ...) spotted by 
   Jan-Pieter Cornet and Philp Gwyn
   
  
  
  
  1.116     +1 -6      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /export/home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.115
  retrieving revision 1.116
  diff -u -r1.115 -r1.116
  --- Makefile.PL	1998/11/24 23:48:27	1.115
  +++ Makefile.PL	1998/11/30 23:14:57	1.116
  @@ -33,8 +33,6 @@
   my $USE_THREADS = 
       (defined($Config{usethreads}) && ($Config{usethreads} eq "define"));
      
  -$PERLV = perl_version();
  -
   require "./lib/mod_perl.pm";
   $VERSION = $mod_perl::VERSION = $mod_perl::VERSION;
   {
  @@ -781,7 +779,6 @@
   #---------------------------------------------------------------------
   
   MOD_PERL_VERSION = $VERSION
  -PERLV = $PERLV
   
   INCDIR = $incdir
   
  @@ -1098,7 +1095,6 @@
           APACHE_ROOT => $APACHE_ROOT,
           APACHE_SRC => $APACHE_SRC,
   	ARCHNAME => $Config{archname},
  -	PERLV => $]+0,
   	HTTPD => (is_ssl() ? "httpsd" : "httpd"),
   	PORT => $PORT,
   	PWD => $PWD,
  @@ -1561,7 +1557,7 @@
       $inc .= $SSL_INCLUDE if $SSL_INCLUDE;
       $inc .= " -DSTRONGHOLD" if is_ssl() =~ /stronghold/i;
       $inc .= " $PERL_EXTRA_CFLAGS" if $PERL_EXTRA_CFLAGS;
  -    $inc .= " -DMOD_PERL -DPERLV=$PERLV";
  +    $inc .= " -DMOD_PERL";
   
       while (<$fh>) {
   	push @file, $_;
  @@ -1871,7 +1867,6 @@
   
   #   mod_perl version
   MOD_PERL_VERSION = $VERSION
  -PERLV = $PERLV
   
   #   Perl interpreter to use 
   PERL = $^X
  
  
  
  1.12      +1 -1      modperl/apaci/mod_perl.config.sh
  
  Index: mod_perl.config.sh
  ===================================================================
  RCS file: /export/home/cvs/modperl/apaci/mod_perl.config.sh,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- mod_perl.config.sh	1998/11/05 03:12:54	1.11
  +++ mod_perl.config.sh	1998/11/30 23:14:58	1.12
  @@ -155,7 +155,7 @@
   perl_defs=''
   perl_defs="$perl_defs -DMOD_PERL_VERSION=\\\"$param_MOD_PERL_VERSION\\\""
   perl_defs="$perl_defs -DMOD_PERL_STRING_VERSION=\\\"mod_perl/$param_MOD_PERL_VERSION\\\""
  -perl_defs="$perl_defs -DPERLV=$param_PERLV"
  +perl_defs="$perl_defs"
   OIFS="$IFS" IFS="$DIFS"
   for hook in \
       DISPATCH CHILD_INIT CHILD_EXIT POST_READ_REQUEST TRANS HEADER_PARSER \