1Devel::PatchPerl(3) User Contributed Perl Documentation Devel::PatchPerl(3)
2
3
4
6 Devel::PatchPerl - Patch perl source a la Devel::PPPort's buildperl.pl
7
9 version 0.60
10
12 use strict;
13 use warnings;
14
15 use Devel::PatchPerl;
16
17 Devel::PatchPerl->patch_source( '5.6.1', '/path/to/untarred/perl/source/perl-5.6.1' );
18
20 Devel::PatchPerl is a modularisation of the patching code contained in
21 Devel::PPPort's "buildperl.pl".
22
23 It does not build perls, it merely provides an interface to the source
24 patching functionality.
25
27 "patch_source"
28 Takes two parameters, a "perl" version and the path to unwrapped
29 perl source for that version. It dies on any errors.
30
31 If you don't supply a "perl" version, it will attempt to auto-
32 determine the "perl" version from the specified path.
33
34 If you don't supply the path to unwrapped perl source, it will
35 assume the current working directory.
36
38 Devel::PPPort
39
41 Chris Williams <chris@bingosnet.co.uk>
42
44 This software is copyright (c) 2011 by Chris Williams and Marcus
45 Holland-Moritz.
46
47 This is free software; you can redistribute it and/or modify it under
48 the same terms as the Perl 5 programming language system itself.
49
50
51
52perl v5.12.4 2011-10-24 Devel::PatchPerl(3)