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