]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
Update the ActivePerl/gcc-3.4 hack for EUMM 7.04
authorVincent Pit <vince@profvince.com>
Tue, 24 Mar 2015 19:54:30 +0000 (16:54 -0300)
committerVincent Pit <vince@profvince.com>
Tue, 7 Apr 2015 13:19:59 +0000 (10:19 -0300)
Starting from this version, PERL_ARCHIVE is quoted so we can no longer set
it to the empty string. Instead, we remove all occurrences of PERL_ARCHIVE
in the linking step section of the Makefile, which is OK since we specify
the perl DLL in other variables. This new technique is still valid for
older versions of EUMM.

Makefile.PL

index 6628bca212924ccbbd2c6a43265092dfbbc69711..664fa083c16da1b81d387e21b23130c083428eed 100644 (file)
@@ -23,7 +23,16 @@ if ($^O eq 'MSWin32' and not grep /^LD[A-Z]*=/, @ARGV) {
                   @Config{qw<bin sitebin>};
   $macro{LDDLFLAGS}    = "$lddlflags $libdirs $libperl";
   $macro{LDFLAGS}      = "$ldflags $libdirs $libperl";
-  $macro{PERL_ARCHIVE} = '',
+  eval <<'  MY_SECTION';
+   package MY;
+   sub dynamic_lib {
+    my $self = shift;
+    my $inherited = $self->SUPER::dynamic_lib(@_);
+    $inherited =~ s/"?\$\(PERL_ARCHIVE\)"?//g;
+    return $inherited;
+   }
+  MY_SECTION
+  die $@ if $@;
  }
 }
 print $is_gcc_34 ? "yes\n" : "no\n";