summaryrefslogtreecommitdiff
path: root/ext/DynaLoader
diff options
context:
space:
mode:
authorDaniel Dragan <bulk88@hotmail.com>2015-10-30 01:47:20 -0400
committerTony Cook <tony@develop-help.com>2015-11-03 08:58:12 +1100
commit73103bd71331afc1a8e2fcbb0b7a406151e835fd (patch)
tree7cc81a187aeec795ed3b6191ff2226adfd82fe13 /ext/DynaLoader
parent2875aaba7db4a0deeb744e76cf3a9023f81b874a (diff)
downloadperl-73103bd71331afc1a8e2fcbb0b7a406151e835fd.tar.gz
remove remains of dl_dld.xs
dl_dld.xs was removed in 5.19.4 in commit 1e5d7f5401
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r--ext/DynaLoader/DynaLoader_pm.PL4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/DynaLoader/DynaLoader_pm.PL b/ext/DynaLoader/DynaLoader_pm.PL
index 944ec9ae28..0100ae1e37 100644
--- a/ext/DynaLoader/DynaLoader_pm.PL
+++ b/ext/DynaLoader/DynaLoader_pm.PL
@@ -147,9 +147,6 @@ $do_expand = <<$^O-eq-VMS>>1<<|$^O-eq-VMS>>0<</$^O-eq-VMS>>;
#@dl_librefs = (); # things we have loaded
#@dl_modules = (); # Modules we have loaded
-# This is a fix to support DLD's unfortunate desire to relink -lc
-@dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
-
EOT
my $cfg_dl_library_path = <<'EOT';
@@ -478,7 +475,6 @@ sub dl_findfile {
push(@names,"cyg$_.$dl_so") unless m:/:;
<</$^O-eq-cygwin>>
push(@names,"lib$_.$dl_so") unless m:/:;
- push(@names,"$_.a") if !m/\.a$/ and $dlsrc eq "dl_dld.xs";
push(@names, $_);
}
my $dirsep = '/';