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/04/19 20:52:02 UTC

cvs commit: modperl/src/modules/perl Apache.xs

dougm       99/04/19 11:52:01

  Modified:    .        Changes ToDo
               src/modules/perl Apache.xs
  Log:
  fix rwrite error message
  
  Revision  Changes    Path
  1.282     +5 -3      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.281
  retrieving revision 1.282
  diff -u -r1.281 -r1.282
  --- Changes	1999/04/16 05:14:18	1.281
  +++ Changes	1999/04/19 18:51:55	1.282
  @@ -8,11 +8,13 @@
   
   =item 1.19_01-dev
   
  +fix rwrite error message [Eric Cholet <ch...@logilune.com>]
  +
   Change Apache::SizeLimit so that it supports Solaris 2.6 and above
  -(<ix...@maz.org>)
  +[Brian Moseley <ix...@maz.org>]
   
   Fixed apaci/load_modules.pl.PL to properly fixup log_agent and
  -log_referer when loaded as DSOs. (<vi...@khera.org>)
  +log_referer when loaded as DSOs. [Vivek Khera <vi...@khera.org>]
   
   Fixed apaci/mod_perl.config.sh to remove the ccdlflags from the
   PERL_LIBS variable when building under bsd/os 4.x, since that causes
  @@ -20,7 +22,7 @@
   should be done for all platforms, as passing cc options to ld just
   seems wrong to me.  Also fixed up Makefile.PL to override Apache's
   notion of LDFLAGS_SHLIB_EXPORT to use Perl's idea of the proper flags
  -when building as a DSO under APACI.  (<vi...@khera.org>)
  +when building as a DSO under APACI.  [Vivek Khera <vi...@khera.org>]
   
   =item 1.19 - April 7, 1999
   
  
  
  
  1.174     +1 -1      modperl/ToDo
  
  Index: ToDo
  ===================================================================
  RCS file: /home/cvs/modperl/ToDo,v
  retrieving revision 1.173
  retrieving revision 1.174
  diff -u -r1.173 -r1.174
  --- ToDo	1999/04/07 05:03:30	1.173
  +++ ToDo	1999/04/19 18:51:57	1.174
  @@ -3,7 +3,7 @@
                    (well, close to it anyhow)
   ---------------------------------------------------------------------------
   
  -- Vivek's BSD/OS 4.0.1 compile as DSO notes
  +- <Perl> patch from Craig Lien <li...@rrnet.com>
   
   - $r->set_handlers(PerlAuthenHandler => undef) stomps other config!?
   
  
  
  
  1.75      +2 -2      modperl/src/modules/perl/Apache.xs
  
  Index: Apache.xs
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/Apache.xs,v
  retrieving revision 1.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- Apache.xs	1999/04/07 03:34:34	1.74
  +++ Apache.xs	1999/04/19 18:52:00	1.75
  @@ -351,12 +351,12 @@
   
   static void rwrite_neg_trace(request_rec *r)
   {
  -#ifdef HAVE_APACHE_V_130
  +#if HAS_MMN_130
       ap_log_error(APLOG_MARK, APLOG_DEBUG, r->server,
   #else
       fprintf(stderr,
   #endif
  -		 "mod_perl: rwrite returned -1 (fd=%d, B_EOUT=%d)",
  +		 "mod_perl: rwrite returned -1 (fd=%d, B_EOUT=%d)\n",
   		 r->connection->client->fd, 
   		 r->connection->client->flags & B_EOUT);
   }