diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 11:54:08 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 11:54:08 +0000 |
commit | 4d8076ea25903dcb0d44fd52eda7914327bc8758 (patch) | |
tree | 23dc04c7a65e28ca86c919d2b978954705447da9 /patchlevel.h | |
parent | 181ea953f5037d8eebef8af5f5ba67f9ff02a565 (diff) | |
download | perl-4d8076ea25903dcb0d44fd52eda7914327bc8758.tar.gz |
#include patchlevel.h by default, provide
PERL_{REVISION,VERSION,SUBVERSION}
p4raw-id: //depot/perl@2943
Diffstat (limited to 'patchlevel.h')
-rw-r--r-- | patchlevel.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/patchlevel.h b/patchlevel.h index f01a059ac4..f2c6b12f97 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -1,7 +1,13 @@ #ifndef __PATCHLEVEL_H_INCLUDED__ -#define PATCHLEVEL 5 -#undef SUBVERSION /* OS/390 has a SUBVERSION in a system header */ -#define SUBVERSION 54 + +# define PERL_REVISION 5 /* age */ +# define PERL_VERSION 5 /* epoch */ +# define PERL_SUBVERSION 55 /* generation */ + +/* these are the old terms of reference */ +# define PATCHLEVEL PERL_VERSION +# undef SUBVERSION /* OS/390 has a SUBVERSION in a system header */ +# define SUBVERSION PERL_SUBVERSION /* local_patches -- list of locally applied less-than-subversion patches. |