You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by do...@apache.org on 2002/05/23 04:33:29 UTC

cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfigC.pm

dougm       02/05/22 19:33:29

  Modified:    perl-framework/Apache-Test/lib/Apache TestConfigC.pm
  Log:
  only print "cannot build c-modules without apxs" warning if there is a c-modules directory
  
  Revision  Changes    Path
  1.18      +1 -4      httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigC.pm
  
  Index: TestConfigC.pm
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigC.pm,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- TestConfigC.pm	14 Dec 2001 18:40:43 -0000	1.17
  +++ TestConfigC.pm	23 May 2002 02:33:29 -0000	1.18
  @@ -49,10 +49,6 @@
   
       $self->{cmodules_disabled} = {}; #for have_module to check
   
  -    unless ($self->{APXS}) {
  -        warning "cannot build c-modules without apxs";
  -    }
  -
       $dir ||= catfile $self->{vars}->{top_dir}, 'c-modules';
   
       unless (-d $dir) {
  @@ -64,6 +60,7 @@
       finddepth(sub { cmodule_find($self, $_) }, $dir);
   
       unless ($self->{APXS}) {
  +        warning "cannot build c-modules without apxs";
           return;
       }