From e8e3635e321a3d3ac3b355d31c5d04e1a479615f Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Mon, 16 Feb 2009 21:16:21 +0000 Subject: Replace *printf "%d.%d.%d", PERL_REVISION, PERL_VERSION, PERL_SUBVERSION with PERL_VERSION_STRING, which can be determined at compile time, as a constant string. --- patchlevel.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'patchlevel.h') diff --git a/patchlevel.h b/patchlevel.h index 885643f34f..207c49207c 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -17,6 +17,10 @@ #define PERL_VERSION 11 /* epoch */ #define PERL_SUBVERSION 0 /* generation */ +#define PERL_VERSION_STRING STRINGIFY(PERL_REVISION) "." \ + STRINGIFY(PERL_VERSION) "." \ + STRINGIFY(PERL_SUBVERSION) + /* The following numbers describe the earliest compatible version of Perl ("compatibility" here being defined as sufficient binary/API compatibility to run XS code built with the older version). -- cgit v1.2.1