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/06/03 18:06:42 UTC

cvs commit: modperl Makefile.PL ToDo

dougm       98/06/03 09:06:40

  Modified:    .        Makefile.PL ToDo
  Log:
   have Makefile.PL check for HTML::HeadParser
  
  Revision  Changes    Path
  1.33      +16 -0     modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /export/home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.32
  retrieving revision 1.33
  diff -u -r1.32 -r1.33
  --- Makefile.PL	1998/05/29 22:07:41	1.32
  +++ Makefile.PL	1998/06/03 16:06:38	1.33
  @@ -763,6 +763,22 @@
       } else {
   	print "ok\n";
       }
  +    print "Checking for HTML::HeadParser....";
  +    eval {
  +	require HTML::HeadParser;
  +    };
  +    if ($@) {
  +	$no_lwp++;
  +	$missing_modules++;
  +	print "failed\n";
  +	print <<EOT;
  +$@
  +The HTML-Parser package is needed (by libwww-perl) to run the test suite.
  +EOT
  +    sleep(2);  # Don't hurry too much
  +    } else {
  +	print "ok\n";
  +    }
   }
   
   sub is_ssl {
  
  
  
  1.29      +0 -2      modperl/ToDo
  
  Index: ToDo
  ===================================================================
  RCS file: /export/home/cvs/modperl/ToDo,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- ToDo	1998/06/03 15:53:17	1.28
  +++ ToDo	1998/06/03 16:06:38	1.29
  @@ -25,8 +25,6 @@
    SSLCacheServerPath /tmp
   	Adam Laurie <ad...@algroup.co.uk>
   
  -- have Makefile.PL check for HTML::HeadParser
  -
   - Gerald's report of Embperl/sub-request/print breakage
   
   - make sure SERVER_VERSION/SERVER_SUBVERSION, etc. is in sync w/ 1.3b7 changes