toddr / Net-Daemon

Read-only release history for Net-Daemon
http://metacpan.org/release/Net-Daemon
0 stars 0 forks source link

configfile support broken on Perl 5.26 [rt.cpan.org #123213] #8

Closed toddr closed 3 years ago

toddr commented 3 years ago

Migrated from rt.cpan.org#123213 (status was 'new')

Requestors:

Attachments:

From kentnl@cpan.org on 2017-10-07 20:13:41 :

Due to the fact that:

"do q[file]"

Implies @INC traversal, and that @INC no longer contains '.' since Perl 5.26,
Net::Daemon is now broken when "configfile" is not a path relative to a path in
@INC

The likely solution is to pass File::Spec->rel2abs( ) on the input file, as
"do" with a fully qualifed filename skips @INC traversal, as does "do" with a
filename with an explicit "./" prefix.

--
- CPAN kentnl@cpan.org
- Gentoo Perl Maintainer kentnl@gentoo.org ( perl@gentoo.org )

From kentnl@cpan.org on 2017-10-07 20:14:05 :

This incidentally breaks DBI's test suite when installed.

--
- CPAN kentnl@cpan.org
- Gentoo Perl Maintainer kentnl@gentoo.org ( perl@gentoo.org )

From kentnl@cpan.org on 2017-10-07 22:05:01 :

This transaction appears to have no content
toddr commented 3 years ago

@kentnl this will be in the next release.