[inseparable changes from match from perl-5.003_97b to perl-5.003_97c]
[p5sagit/p5-mst-13.2.git] / patchlevel.h
1 #define PATCHLEVEL 3
2 #define SUBVERSION 97
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  */
39 static  char    *local_patches[] = {
40         NULL
41         ,"Dev97A - First development patch to 5.003_97"
42         ,"Dev97B - Second development patch to 5.003_97"
43         ,"Dev97C - Third development patch to 5.003_97"
44         ,NULL
45 };
46
47 /* Initial space prevents this variable from being inserted in config.sh  */
48 #  define       LOCAL_PATCH_COUNT       \
49         (sizeof(local_patches)/sizeof(local_patches[0])-2)