This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
tweak for win32 build
[perl5.git] / patchlevel.h
1 #ifndef __PATCHLEVEL_H_INCLUDED__
2
3 /* do not adjust the whitespace! Configure expects the numbers to be
4  * exactly on the third column */
5
6 #define PERL_REVISION   5               /* age */
7 #define PERL_VERSION    5               /* epoch */
8 #define PERL_SUBVERSION 61              /* generation */
9
10 #define __PATCHLEVEL_H_INCLUDED__
11 #endif
12
13 /*
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.
21
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>
27            *** 38,43 ***
28            --- 38,44 ---
29                 ,"FOO1235 - some patch"
30                 ,"BAR3141 - another patch"
31                 ,"BAZ2718 - and another patch"
32            +    ,"MINE001 - my new patch"
33                 ,NULL
34              };
35         
36         please change it to 
37            *** patchlevel.h.orig        <date here>
38            --- patchlevel.h     <date here>
39            *** 41,43 ***
40            --- 41,44 ---
41            +    ,"MINE001 - my new patch"
42              };
43         
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.
47  */
48 #if !defined(PERL_PATCHLEVEL_H_IMPLICIT) && !defined(LOCAL_PATCH_COUNT)
49 static  char    *local_patches[] = {
50         NULL
51         ,NULL
52 };
53
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)
57
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
62 #endif