On Sat, Jul 24, 2021 at 5:25 AM sisyphus <sisyphus359@gmail.com> wrote: > > For me, on Windows 7, 'gmake install' fails with: > > ..\perl.exe -I..\lib ..\installhtml --podroot=.. --htmldir=.\html \ > --podpath=pod:lib:utils --htmlroot="file://C|\perl-5.35.2-1110\html"\ > --recurse > "anchorify" is not exported by the Pod::Html module > "relativize_url" is not exported by the Pod::Html module > Can't continue after import errors at ..\installhtml line 11. > BEGIN failed--compilation aborted at ..\installhtml line 11. > make: *** [GNUmakefile:1736: doc] Error 255 > > Sure enough, the installhtml script specifies: > use Pod::Html 1.23 qw(anchorify relativize_url); > > However, version 1.31 of Pod/Html.pm (which is the version of Pod::Html that ships with 5.35.2) exports neither "anchorify" nor "relativize_url" > Am I the only person experiencing this issue ? This was broken by https://github.com/Perl/perl5/commit/d32e5dc4f13e3a8f42c445ab32d50f7aff8d1cd7. Previously, htmlify and anchorify were documented functions available from Pod::Html. relativize_url was also exportable, although it was not included in the documentation. > > It seems to me that installhtml needs to be rewritten to accommodate the significant alterations that have been made to Html.pm since the perl-5.35.1 release. > > Perl itself is installed ok, and seems to be functioning correctly. > > Cheers, > RobThread Previous