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