What is the patch in XSLoader.pm good for?

[email protected] (Oliver Betz) Tue, 9 Jul 2019 15:56:30 +0200
Newsgroups perl.par
Message-ID <[email protected]>
Hi,

PatchContent.pm has an entry for XSLoader.pm:

goto \&XSLoader::bootstrap_inherit unless $module and defined
&dl_load_file;' => 'goto \&XSLoader::bootstrap_inherit;

This means, the "unless $module and defined &dl_load_file" condition is
stripped in line 34 of XSLoader.pm with the effect that "goto
\&XSLoader::bootstrap_inherit" is undonditional.

What is it good for?

TIA,

Oliver