Further Byteloader tweaks from Enache.
[p5sagit/p5-mst-13.2.git] / ext / ByteLoader / ByteLoader.pm
1 package ByteLoader;
2
3 use XSLoader ();
4
5 our $VERSION = '0.05';
6
7 XSLoader::load 'ByteLoader', $VERSION;
8
9 1;
10 __END__
11 =head1 NAME
12
13 ByteLoader - load byte compiled perl code
14
15 =head1 SYNOPSIS
16
17   use ByteLoader 0.04;
18   <byte code>
19
20   or just
21
22   perl -MByteLoader bytecode_file
23
24 =head1 DESCRIPTION
25
26 This module is used to load byte compiled perl code as produced by
27 C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
28 the byte code and insert it into the compiled code at the appropriate point.
29
30 =head1 AUTHOR
31
32 Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
33 Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
34
35 =head1 SEE ALSO
36
37 perl(1).
38
39 =cut