From: Doug MacEachern Date: Sun, 5 Mar 2000 15:19:01 +0000 (-0800) Subject: Avoid wiping out @dl_{librefs,modules} when XSLoader X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f1fbdb584b86a1c3dd919baacbf9ea2da63c14ca;p=p5sagit%2Fp5-mst-13.2.git Avoid wiping out @dl_{librefs,modules} when XSLoader falls back to DynaLoader. To: perl5-porters@perl.org Subject: [PATCH v5.5.670] maintain DynaLoader::dl_{librefs,modules} Message-ID: p4raw-id: //depot/cfgperl@5560 --- diff --git a/ext/DynaLoader/DynaLoader_pm.PL b/ext/DynaLoader/DynaLoader_pm.PL index 0e0f792..e0eb604 100644 --- a/ext/DynaLoader/DynaLoader_pm.PL +++ b/ext/DynaLoader/DynaLoader_pm.PL @@ -77,8 +77,8 @@ $Is_MacOS = $^O eq 'MacOS'; @dl_require_symbols = (); # names of symbols we need @dl_resolve_using = (); # names of files to link with @dl_library_path = (); # path to look for files -@dl_librefs = (); # things we have loaded -@dl_modules = (); # Modules we have loaded +#@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";