Subject: | attempt to load the wrong module (POD::Text instead of Pod::Text) |
Euclid.pm, line 539, instead of
if (-t *STDOUT and eval { require POD::Text }) {
should be
if (-t *STDOUT and eval { require Pod::Text }) {
After this change, both the "--help" and "--man" options work as expected.