home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / PerlIO.pm < prev    next >
Encoding:
Perl POD Document  |  2003-08-22  |  295 b   |  16 lines

  1. package APR::PerlIO;
  2.  
  3. require 5.006001;
  4.  
  5. our $VERSION = '0.01';
  6.  
  7. # The PerlIO layer is available only since 5.8.0 (5.7.2@13534)
  8. use Config;
  9. use constant PERLIO_LAYERS_ARE_ENABLED => $Config{useperlio} && $] >= 5.00703;
  10.  
  11. use APR::XSLoader ();
  12. APR::XSLoader::load __PACKAGE__;
  13.  
  14.  
  15. 1;
  16.