xref: /openbsd-src/gnu/usr.bin/perl/patchlevel.h (revision 62a742911104f98b9185b2c6b6007d9b1c36396c)
1 #define PATCHLEVEL 4
2 #define SUBVERSION 4
3 
4 /*
5 	local_patches -- list of locally applied less-than-subversion patches.
6 	If you're distributing such a patch, please give it a tag name and a
7 	one-line description, placed just before the last NULL in the array
8 	below.  If your patch fixes a bug in the perlbug database, please
9 	mention the bugid.  If your patch *IS* dependent on a prior patch,
10 	please place your applied patch line after its dependencies. This
11 	will help tracking of patch dependencies.
12 
13 	Please edit the hunk of diff which adds your patch to this list,
14 	to remove context lines which would give patch problems.  For instance,
15 	if the original context diff is
16 	   *** patchlevel.h.orig	<date here>
17 	   --- patchlevel.h	<date here>
18 	   *** 38,43 ***
19 	   --- 38,44 ---
20 			,"MAINT_TRIAL_1 - 5.00x_0x maintenance release trial 1"
21 	     	,"BAR3141 - another patch"
22 	     	,"BAZ2718 - and another patch"
23 	   + 	,"MINE001 - my new patch"
24 	     	,NULL
25 	     };
26 
27 	please change it to
28 	   *** patchlevel.h.orig	<date here>
29 	   --- patchlevel.h	<date here>
30 	   *** 41,43 ***
31 	   --- 41,44 ---
32 	   + 	,"MINE001 - my new patch"
33 	     };
34 
35 	(Note changes to line numbers as well as removal of context lines.)
36 	This will prevent patch from choking if someone has previously
37 	applied different patches than you.
38  */
39 /* The following line and terminating '};' are read by perlbug.PL. Don't alter. */
40 static	char	*local_patches[] = {
41 	NULL
42 	,NULL
43 };
44 
45 /* Initial space prevents this variable from being inserted in config.sh  */
46 #  define	LOCAL_PATCH_COUNT	\
47 	(sizeof(local_patches)/sizeof(local_patches[0])-2)
48