cvs commit: modperl ToDo

2001-01-26 Thread dougm

dougm   01/01/26 10:38:19

  Modified:.ToDo
  Log:
  todo
  
  Revision  ChangesPath
  1.275 +4 -3  modperl/ToDo
  
  Index: ToDo
  ===
  RCS file: /home/cvs/modperl/ToDo,v
  retrieving revision 1.274
  retrieving revision 1.275
  diff -u -r1.274 -r1.275
  --- ToDo  2001/01/26 07:13:48 1.274
  +++ ToDo  2001/01/26 18:38:16 1.275
  @@ -5,12 +5,11 @@
   
   - -- post 1.25 --
   
  +- re-enabled unsigned short-ness test for $s->port in t/net/perl/api.pl
  +
   - From: Andy Wardley <[EMAIL PROTECTED]>
 Subject: Problems with SERVER_MERGE and DIR_MERGE
   
  -- From: Vivek Khera <[EMAIL PROTECTED]>
  -  Subject: missing docs
  -
   - From: Wenzhong Tang <[EMAIL PROTECTED]>
 Subject: RE: Prototype mismatch in Apache::PerlRun line 343
   
  @@ -50,6 +49,8 @@
   
   - disable PERL_SSI unless mod_include is listed in httpd -l
 and Action unless mod_action, etc.
  +
  +- docs: update CREDITS, cleanup install docs
   
   ---
   POSSIBLE NEW FEATURES
  
  
  



cvs commit: modperl/t/net/perl api.pl

2001-01-26 Thread dougm

dougm   01/01/26 10:37:50

  Modified:t/net/perl api.pl
  Log:
  disabling this new test for now, worrried it might not work on all architectures
  
  Revision  ChangesPath
  1.44  +1 -1  modperl/t/net/perl/api.pl
  
  Index: api.pl
  ===
  RCS file: /home/cvs/modperl/t/net/perl/api.pl,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- api.pl2001/01/25 07:10:42 1.43
  +++ api.pl2001/01/26 18:37:46 1.44
  @@ -180,7 +180,7 @@
   my $port = $s->port;
   for (32768, 65535) {
   $s->port($_);
  -test ++$i, $s->port == $_;
  +test ++$i, $s->port; # == $_;
   }
   $s->port($port);
   test ++$i, $s->port == $port;
  
  
  



cvs commit: modperl/src/modules/perl Makefile

2001-01-26 Thread dougm

dougm   01/01/26 08:42:50

  Modified:src/modules/perl Makefile
  Log:
  fix for the Config.pm overridding mechanism (used for stripping lfs flags, etc)
  
  Revision  ChangesPath
  1.13  +3 -3  modperl/src/modules/perl/Makefile
  
  Index: Makefile
  ===
  RCS file: /home/cvs/modperl/src/modules/perl/Makefile,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Makefile  2000/12/23 02:23:09 1.12
  +++ Makefile  2001/01/26 16:42:49 1.13
  @@ -50,7 +50,7 @@
   # 
   # Makefile for the Apache mod_perl library
   # 
  -# $Id: Makefile,v 1.12 2000/12/23 02:23:09 dougm Exp $
  +# $Id: Makefile,v 1.13 2001/01/26 16:42:49 dougm Exp $
   #
   
   #__ORIGINAL__
  @@ -102,7 +102,7 @@
   #APACHE_SSL = 
   PERL=/usr/bin/perl
   PERL_STATIC_EXTS =
  -PERL5LIB=`$(PERL) -MConfig -e 'print $$Config{privlibexp}'`
  +PRIVLIB=`$(PERL) -MConfig -e 'print $$Config{privlibexp}'`
   EXTUTILS_EMBED = $(PERL) -MExtUtils::Embed
   #CONFIG_PM=-MConfig
   CONFIG_PM='-MApache::ExtUtils=%Config'
  @@ -129,7 +129,7 @@
$(XS_INIT) 
   
   .xs.c:
  - $(PERL) $(PERL5LIB)/ExtUtils/xsubpp -typemap $(PERL5LIB)/ExtUtils/typemap 
$*.xs > $@
  + $(PERL) $(PRIVLIB)/ExtUtils/xsubpp -typemap $(PRIVLIB)/ExtUtils/typemap $*.xs 
> $@
   
   PERLSRC=mod_perl_opmask.c mod_perl.c perlxsi.c perl_config.c perl_util.c perlio.c 
$(STATIC_SRC)