diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-05-01 14:39:31 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-06-12 16:15:22 +0200 |
commit | 457c538539eca0f3c596861d7d14ab0c0e9ee438 (patch) | |
tree | 3c2d5297ad80a80b290499ef46ff60c6e3b70814 /perlvars.h | |
parent | 0447859b8a048144ae0ece76a2f7595840942fcb (diff) | |
download | perl-457c538539eca0f3c596861d7d14ab0c0e9ee438.tar.gz |
Move PL_{revision,version,subversion} to perl.h, making them const U8.
To get the initialisation to work, the location of #include patchlevel.h needs
to be moved.
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/perlvars.h b/perlvars.h index fb6201ecef..2facbeba78 100644 --- a/perlvars.h +++ b/perlvars.h @@ -145,15 +145,6 @@ PERLVARI(Gveto_cleanup, int, FALSE) /* exit without cleanup */ PERLVARI(Grunops_std, runops_proc_t, Perl_runops_standard) PERLVARI(Grunops_dbg, runops_proc_t, Perl_runops_debug) - -/* These are baked at compile time into any shared perl library. - In future 5.10.x releases this will allow us in main() to sanity test the - library we're linking against. */ - -PERLVARI(Grevision, U8, PERL_REVISION) -PERLVARI(Gversion, U8, PERL_VERSION) -PERLVARI(Gsubversion, U8, PERL_SUBVERSION) - #if defined(MULTIPLICITY) # define PERL_INTERPRETER_SIZE_UPTO_MEMBER(member) \ STRUCT_OFFSET(struct interpreter, member) + \ |