1 #ifndef __PATCHLEVEL_H_INCLUDED__
3 /* do not adjust the whitespace! Configure expects the numbers to be
4 * exactly on the third column */
6 #define PERL_REVISION 5 /* age */
7 #define PERL_VERSION 5 /* epoch */
8 #define PERL_SUBVERSION 61 /* generation */
10 #define __PATCHLEVEL_H_INCLUDED__
14 local_patches -- list of locally applied less-than-subversion patches.
15 If you're distributing such a patch, please give it a name and a
16 one-line description, placed just before the last NULL in the array
17 below. If your patch fixes a bug in the perlbug database, please
18 mention the bugid. If your patch *IS* dependent on a prior patch,
19 please place your applied patch line after its dependencies. This
20 will help tracking of patch dependencies.
22 Please edit the hunk of diff which adds your patch to this list,
23 to remove context lines which would give patch problems. For instance,
24 if the original context diff is
25 *** patchlevel.h.orig <date here>
26 --- patchlevel.h <date here>
29 ,"FOO1235 - some patch"
30 ,"BAR3141 - another patch"
31 ,"BAZ2718 - and another patch"
32 + ,"MINE001 - my new patch"
37 *** patchlevel.h.orig <date here>
38 --- patchlevel.h <date here>
41 + ,"MINE001 - my new patch"
44 (Note changes to line numbers as well as removal of context lines.)
45 This will prevent patch from choking if someone has previously
46 applied different patches than you.
48 #if !defined(PERL_PATCHLEVEL_H_IMPLICIT) && !defined(LOCAL_PATCH_COUNT)
49 static char *local_patches[] = {
54 /* Initial space prevents this variable from being inserted in config.sh */
55 # define LOCAL_PATCH_COUNT \
56 (sizeof(local_patches)/sizeof(local_patches[0])-2)
58 /* the old terms of reference, add them only when explicitly included */
59 #define PATCHLEVEL PERL_VERSION
60 #undef SUBVERSION /* OS/390 has a SUBVERSION in a system header */
61 #define SUBVERSION PERL_SUBVERSION