1 |
|
---|
2 | ------------------------------------------------------
|
---|
3 | Devel::PPPort - Perl/Pollution/Portability Version 3
|
---|
4 | ------------------------------------------------------
|
---|
5 |
|
---|
6 | CONTENTS
|
---|
7 |
|
---|
8 | 1. DESCRIPTION
|
---|
9 | 2. INSTALLATION
|
---|
10 | 3. DOCUMENTATION
|
---|
11 | 4. BUGS
|
---|
12 | 5. COPYRIGHT
|
---|
13 |
|
---|
14 |
|
---|
15 | --------------
|
---|
16 | 1. DESCRIPTION
|
---|
17 | --------------
|
---|
18 |
|
---|
19 | Perl's API has changed over time, gaining new features, new functions,
|
---|
20 | increasing its flexibility, and reducing the impact on the C namespace
|
---|
21 | environment (reduced pollution). The header file written by this module,
|
---|
22 | typically F<ppport.h>, attempts to bring some of the newer Perl API
|
---|
23 | features to older versions of Perl, so that you can worry less about
|
---|
24 | keeping track of old releases, but users can still reap the benefit.
|
---|
25 |
|
---|
26 | ---------------
|
---|
27 | 2. INSTALLATION
|
---|
28 | ---------------
|
---|
29 |
|
---|
30 | Installation of the Devel::PPPort module follows the standard Perl Way
|
---|
31 | and should not be harder than:
|
---|
32 |
|
---|
33 | perl Makefile.PL
|
---|
34 | make
|
---|
35 | make test
|
---|
36 | make install
|
---|
37 |
|
---|
38 | Note that you may need to become superuser to 'make install'.
|
---|
39 |
|
---|
40 | If you're building the module under Windows, you may need to use a
|
---|
41 | different make program, such as 'nmake', instead of 'make'.
|
---|
42 |
|
---|
43 | ----------------
|
---|
44 | 3. DOCUMENTATION
|
---|
45 | ----------------
|
---|
46 |
|
---|
47 | To see the documentation, use the perldoc command:
|
---|
48 |
|
---|
49 | perldoc Devel::PPPort
|
---|
50 |
|
---|
51 | You can also visit CPAN Search and see the documentation online as
|
---|
52 | pretty nice HTML. This is also where you will find the most recent
|
---|
53 | version of this module:
|
---|
54 |
|
---|
55 | http://search.cpan.org/~mhx/Devel-PPPort/
|
---|
56 |
|
---|
57 | -------
|
---|
58 | 4. BUGS
|
---|
59 | -------
|
---|
60 |
|
---|
61 | If you find any bugs, Devel::PPPort doesn't seem to build on your
|
---|
62 | system or any of its tests fail, please use the CPAN Request Tracker
|
---|
63 |
|
---|
64 | http://rt.cpan.org/
|
---|
65 |
|
---|
66 | to create a ticket for the module.
|
---|
67 |
|
---|
68 | ------------
|
---|
69 | 5. COPYRIGHT
|
---|
70 | ------------
|
---|
71 |
|
---|
72 | Version 3.x, Copyright (C) 2004-2005, Marcus Holland-Moritz.
|
---|
73 | Version 2.x, Copyright (C) 2001, Paul Marquess.
|
---|
74 | Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
|
---|
75 |
|
---|
76 | This program is free software; you can redistribute it and/or
|
---|
77 | modify it under the same terms as Perl itself.
|
---|
78 |
|
---|