diff options
Diffstat (limited to 'lang/perl5/patches/patch-af')
-rw-r--r-- | lang/perl5/patches/patch-af | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/lang/perl5/patches/patch-af b/lang/perl5/patches/patch-af deleted file mode 100644 index b205006e87d..00000000000 --- a/lang/perl5/patches/patch-af +++ /dev/null @@ -1,35 +0,0 @@ -$NetBSD: patch-af,v 1.11 2001/10/02 06:37:56 jlam Exp $ - ---- lib/ExtUtils/Liblist.pm.orig Thu Feb 22 21:57:55 2001 -+++ lib/ExtUtils/Liblist.pm -@@ -68,20 +68,28 @@ - foreach $thislib (split ' ', $potential_libs){ - - # Handle possible linker path arguments. -- if ($thislib =~ s/^(-[LR])//){ # save path flag type -+ if ($thislib =~ s/^(-[LR]|-Wl,-R)//){ # save path flag type - my($ptype) = $1; - unless (-d $thislib){ - warn "$ptype$thislib ignored, directory does not exist\n" - if $verbose; - next; - } -+ my($rtype) = $ptype; -+ if (($ptype eq '-R') or ($ptype eq '-Wl,-R')) { -+ if ($Config{'lddlflags'} =~ /-Wl,-R/) { -+ $rtype = '-Wl,-R'; -+ } elsif ($Config{'lddlflags'} =~ /-R/) { -+ $rtype = '-R'; -+ } -+ } - unless ($self->file_name_is_absolute($thislib)) { - warn "Warning: $ptype$thislib changed to $ptype$pwd/$thislib\n"; - $thislib = $self->catdir($pwd,$thislib); - } - push(@searchpath, $thislib); - push(@extralibs, "$ptype$thislib"); -- push(@ldloadlibs, "$ptype$thislib"); -+ push(@ldloadlibs, "$rtype$thislib"); - next; - } - |