stas        2003/09/16 13:47:46

  Modified:    lib/Apache ExtUtils.pm
               .        Changes
  Log:
  Fix Apache::ExtUtils to work with blead perl (it was breaking the
  build) http://rt.perl.org/rt2/Ticket/Display.html?id=23803
  
  Revision  Changes    Path
  1.26      +2 -2      modperl/lib/Apache/ExtUtils.pm
  
  Index: ExtUtils.pm
  ===================================================================
  RCS file: /home/cvs/modperl/lib/Apache/ExtUtils.pm,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -u -r1.25 -r1.26
  --- ExtUtils.pm       23 May 2002 02:44:40 -0000      1.25
  +++ ExtUtils.pm       16 Sep 2003 20:47:46 -0000      1.26
  @@ -17,9 +17,9 @@
   sub import {
       my $class = shift;
       my $config_export = join '|', @config_export;
  -    for (@_) {
  +    for my $symbol (@_) {
        #perl -Mlib=lib -MApache::ExtUtils=%Config -e 'print $Config{cc}'
  -     if (/$config_export/o) {
  +     if ($symbol =~ /$config_export/o) {
            require Config;
            *Apache::ExtUtils::Config = \%Config::Config;
            Config_pm_fixup();
  
  
  
  1.677     +3 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.676
  retrieving revision 1.677
  diff -u -u -r1.676 -r1.677
  --- Changes   18 Aug 2003 17:51:53 -0000      1.676
  +++ Changes   16 Sep 2003 20:47:46 -0000      1.677
  @@ -10,6 +10,9 @@
   
   =item 1.28_01-dev
   
  +Fix Apache::ExtUtils to work with blead perl (it was breaking the
  +build) http://rt.perl.org/rt2/Ticket/Display.html?id=23803 [Stas]
  +
   On Win32 the uploaded file wasn't cleaned up (weither it's a bug in
   CGI.pm or not), make sure we don't leave any dropped files around
   [Steve Hay <[EMAIL PROTECTED]>]
  
  
  

Reply via email to