Commit | Line | Data |
---|---|---|
f7d144c8 | 1 | #ifndef __PATCHLEVEL_H_INCLUDED__ |
54e3afc4 | 2 | #define PATCHLEVEL 5 |
9d116dd7 | 3 | #undef SUBVERSION /* OS/390 has a SUBVERSION in a system header */ |
041b7743 | 4 | #define SUBVERSION 54 |
7f0a50ff PP |
5 | |
6 | /* | |
7 | local_patches -- list of locally applied less-than-subversion patches. | |
8 | If you're distributing such a patch, please give it a name and a | |
9 | one-line description, placed just before the last NULL in the array | |
10 | below. If your patch fixes a bug in the perlbug database, please | |
11 | mention the bugid. If your patch *IS* dependent on a prior patch, | |
12 | please place your applied patch line after its dependencies. This | |
13 | will help tracking of patch dependencies. | |
14 | ||
15 | Please edit the hunk of diff which adds your patch to this list, | |
16 | to remove context lines which would give patch problems. For instance, | |
17 | if the original context diff is | |
18 | *** patchlevel.h.orig <date here> | |
19 | --- patchlevel.h <date here> | |
20 | *** 38,43 *** | |
21 | --- 38,44 --- | |
22 | ,"FOO1235 - some patch" | |
23 | ,"BAR3141 - another patch" | |
24 | ,"BAZ2718 - and another patch" | |
25 | + ,"MINE001 - my new patch" | |
26 | ,NULL | |
27 | }; | |
28 | ||
29 | please change it to | |
30 | *** patchlevel.h.orig <date here> | |
31 | --- patchlevel.h <date here> | |
32 | *** 41,43 *** | |
33 | --- 41,44 --- | |
34 | + ,"MINE001 - my new patch" | |
35 | }; | |
36 | ||
37 | (Note changes to line numbers as well as removal of context lines.) | |
38 | This will prevent patch from choking if someone has previously | |
39 | applied different patches than you. | |
40 | */ | |
41 | static char *local_patches[] = { | |
42 | NULL | |
43 | ,NULL | |
44 | }; | |
45 | ||
b33f1439 PP |
46 | /* Initial space prevents this variable from being inserted in config.sh */ |
47 | # define LOCAL_PATCH_COUNT \ | |
7f0a50ff | 48 | (sizeof(local_patches)/sizeof(local_patches[0])-2) |
f7d144c8 | 49 | |
e5c9fcd0 | 50 | # define __PATCHLEVEL_H_INCLUDED__ |
f7d144c8 | 51 | #endif |