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