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 gb...@apache.org on 2001/12/18 11:54:16 UTC

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

gbenson     01/12/18 02:54:16

  Modified:    perl-framework/Apache-Test/lib/Apache TestConfigParse.pm
  Log:
  HPUX calls it's shared libraries `.sl'.
  
  Revision  Changes    Path
  1.17      +1 -1      httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigParse.pm
  
  Index: TestConfigParse.pm
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigParse.pm,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- TestConfigParse.pm	2001/10/18 20:11:28	1.16
  +++ TestConfigParse.pm	2001/12/18 10:54:16	1.17
  @@ -81,7 +81,7 @@
           my $file = $self->server_file($args->[1]);
   
           my $name = basename $args->[1];
  -        $name =~ s/\.so$/.c/;  #mod_info.so => mod_info.c
  +        $name =~ s/\.s[ol]$/.c/;  #mod_info.so => mod_info.c
           $name =~ s/^lib/mod_/; #libphp4.so => mod_php4.c
           $self->trace("LoadModule $modname $name");
           $name = $modname_alias{$name} if $modname_alias{$name};