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