This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
upgrade to PodParser-1.085 from Brad Appleton <bradapp@enteract.com>
[perl5.git] / patchlevel.h
CommitLineData
f7d144c8 1#ifndef __PATCHLEVEL_H_INCLUDED__
4d8076ea 2
a9fb271f
GS
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 */
c1b02fb8 8#define PERL_SUBVERSION 61 /* generation */
4d8076ea 9
e3321bb0
GS
10#define __PATCHLEVEL_H_INCLUDED__
11#endif
12
7f0a50ff 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 */
e3321bb0 48#if !defined(PERL_PATCHLEVEL_H_IMPLICIT) && !defined(LOCAL_PATCH_COUNT)
7f0a50ff 49static char *local_patches[] = {
50 NULL
51 ,NULL
52};
53
b33f1439 54/* Initial space prevents this variable from being inserted in config.sh */
55# define LOCAL_PATCH_COUNT \
7f0a50ff 56 (sizeof(local_patches)/sizeof(local_patches[0])-2)
f7d144c8 57
cceca5ed 58/* the old terms of reference, add them only when explicitly included */
cceca5ed
GS
59#define PATCHLEVEL PERL_VERSION
60#undef SUBVERSION /* OS/390 has a SUBVERSION in a system header */
61#define SUBVERSION PERL_SUBVERSION
62#endif