dougm       01/10/20 19:55:37

  Modified:    lib/Apache Build.pm
  Log:
  always use .so extension for mod_perl dso
  
  Revision  Changes    Path
  1.56      +2 -1      modperl-2.0/lib/Apache/Build.pm
  
  Index: Build.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- Build.pm  2001/10/21 02:50:15     1.55
  +++ Build.pm  2001/10/21 02:55:37     1.56
  @@ -704,7 +704,7 @@
   my $mm_replace = join '|', keys %perl_config_pm_alias;
   
   my @perl_config_pm =
  -  (qw(cc cpprun rm ranlib lib_ext dlext obj_ext cccdlflags lddlflags),
  +  (qw(cc cpprun rm ranlib lib_ext obj_ext cccdlflags lddlflags),
      values %perl_config_pm_alias);
   
   sub make_tools {
  @@ -744,6 +744,7 @@
       $self->make_tools($fh);
   
       print $fh $self->canon_make_attr('libname', $self->{MP_LIBNAME});
  +    print $fh $self->canon_make_attr('dlext', 'so'); #always use .so
   
       print $fh $self->canon_make_attr('lib_shared',
                          "$self->{MP_LIBNAME}.$self->{MODPERL_DLEXT}");
  
  
  


Reply via email to