X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=patchlevel.h;h=a54f937efae8942f420597ceb5ba1de8d698f498;hb=097ee67dff1c60f201bc09435bc6eaeeafcd8123;hp=38de8545b37ad21bd5ea0f4151ae21872e75ce29;hpb=fc36a67e8855d031b2a6921819d899eb149eee2d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/patchlevel.h b/patchlevel.h index 38de854..a54f937 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -1,5 +1,11 @@ -#define PATCHLEVEL 3 -#define SUBVERSION 97 +#ifndef __PATCHLEVEL_H_INCLUDED__ + +/* do not adjust the whitespace! Configure expects the numbers to be + * exactly on the third column */ + +#define PERL_REVISION 5 /* age */ +#define PERL_VERSION 5 /* epoch */ +#define PERL_SUBVERSION 57 /* generation */ /* local_patches -- list of locally applied less-than-subversion patches. @@ -38,10 +44,20 @@ */ static char *local_patches[] = { NULL - ,"Dev97A-I - Nine development patches to 5.003_97" ,NULL }; /* Initial space prevents this variable from being inserted in config.sh */ # define LOCAL_PATCH_COUNT \ (sizeof(local_patches)/sizeof(local_patches[0])-2) + +# define __PATCHLEVEL_H_INCLUDED__ +#endif + +/* the old terms of reference, add them only when explicitly included */ +#if !defined(PERL_PATCHLEVEL_H_IMPLICIT) && !defined(PATCHLEVEL) +#define PATCHLEVEL PERL_VERSION +#undef SUBVERSION /* OS/390 has a SUBVERSION in a system header */ +#define SUBVERSION PERL_SUBVERSION +#endif +