Re: DynaLoder and names of Gtk2 dlls

[email protected] (Roderich Schupp) Wed, 27 Feb 2019 21:43:55 +0100
Newsgroups perl.par
Message-ID <CAC9r9zbHaOY2WgAbB=6Btuhtah4YLz3hWg=NDezWa2=b2_g3LQ@mail.gmail.com>
On Tue, Feb 26, 2019 at 12:30 PM RAPPAZ Francois via par <[email protected]>
wrote:

>   I’m hitting a wall with a recent strawberry perl setup, where all the
> dlls during modules installs are named foo.xs.dll. Would that be a reason
> why it fails, DynaLoader searching   for foo.dll
>
>
>

No. Actually, DynLoader is looking for Bar.$Config{dlext} and
$Config{dlext} = "xs.dll" for non-ancient Strawberry Perls.
Note that you can see what DynaLoader is looking for by setting the
environment variable PERL_DL_DEBUG=1 (at least when it's in last resort
mode using dl_findfile()).

Cheers, Roderich