Subject: | Handle correctly situation when $Config{dlext} is not equal to $Config{so} |
Please consider the following patch:
--
kmx
--- XML-LibXSLT-1.89/Makefile.PL 2014-03-05 14:04:04.000000000 +0100 +++ XML-LibXSLT-1.89_patched/Makefile.PL 2014-04-07 22:04:13.842661600 +0200 @@ -224,7 +224,7 @@ 5100BUG } else { - $config{DLEXT} = 'xs.dll' if ($::is_Win32); + $config{DLEXT} = 'xs.'.$Config{dlext} if ($::is_Win32); } }It handles correctly the situation when you have for example $Config{dlext} == 'special.dll' and $Config{so} = 'dll'
--
kmx