This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
support optional crypt() with PERL_OBJECT
[perl5.git] / patchlevel.h
1 #ifndef __PATCHLEVEL_H_INCLUDED__
2 #define PATCHLEVEL 5
3 #define SUBVERSION 0
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  */
40 static  char    *local_patches[] = {
41         NULL
42         ,"MAYBE - 5.005, but not just yet"
43         ,NULL
44 };
45
46 /* Initial space prevents this variable from being inserted in config.sh  */
47 #  define       LOCAL_PATCH_COUNT       \
48         (sizeof(local_patches)/sizeof(local_patches[0])-2)
49
50 #  define __PATCHLEVEL_H_INCLUDED__
51 #endif