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