in reply to Re^3: How to declare a dependency on PerlIO in a CPAN module?
in thread How to declare a dependency on PerlIO in a CPAN module?
Which part of which file of your module depends on USE_PERLIO ( "perlio.h" )?
Why is it important for CPAN metadata to know about C-level requirements?
It is important because there are features in the perl core that are available iff PerlIO is used. Unlike most C-level flags, USE_PERLIO has visible effects on Perl code. In particular, if PerlIO is not used, opening a scalar as a file does not work.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: How to declare a dependency on PerlIO in a CPAN module?
by Anonymous Monk on Sep 01, 2019 at 22:56 UTC |