This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Explain \ in prototypes, and fix var name in example
[perl5.git] / patchlevel.h
CommitLineData
4633a7c4 1#define PATCHLEVEL 2
7f0a50ff 2#define SUBVERSION 1
3
4/*
5 local_patches -- list of locally applied less-than-subversion patches.
6 If you're distributing such a patch, please give it a name and a
7 one-line description, placed just before the last NULL in the array
8 below. If your patch fixes a bug in the perlbug database, please
9 mention the bugid. If your patch *IS* dependent on a prior patch,
10 please place your applied patch line after its dependencies. This
11 will help tracking of patch dependencies.
12
13 Please edit the hunk of diff which adds your patch to this list,
14 to remove context lines which would give patch problems. For instance,
15 if the original context diff is
16 *** patchlevel.h.orig <date here>
17 --- patchlevel.h <date here>
18 *** 38,43 ***
19 --- 38,44 ---
20 ,"FOO1235 - some patch"
21 ,"BAR3141 - another patch"
22 ,"BAZ2718 - and another patch"
23 + ,"MINE001 - my new patch"
24 ,NULL
25 };
26
27 please change it to
28 *** patchlevel.h.orig <date here>
29 --- patchlevel.h <date here>
30 *** 41,43 ***
31 --- 41,44 ---
32 + ,"MINE001 - my new patch"
33 };
34
35 (Note changes to line numbers as well as removal of context lines.)
36 This will prevent patch from choking if someone has previously
37 applied different patches than you.
38 */
39static char *local_patches[] = {
40 NULL
41 ,NULL
42};
43
44#define LOCAL_PATCH_COUNT \
45 (sizeof(local_patches)/sizeof(local_patches[0])-2)