From 273373602f02d9c22b08da8d938b9c49f2af599a Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 23 Mar 2000 15:35:47 +0000 Subject: [PATCH] * $VERSION is now version_string + $FULLVERSION is now full_version_string --- compiler/globals.pas | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/compiler/globals.pas b/compiler/globals.pas index afab95063a..3d5e4a192e 100644 --- a/compiler/globals.pas +++ b/compiler/globals.pas @@ -796,8 +796,9 @@ implementation procedure DefaultReplacements(var s:string); begin { Replace some macro's } - Replace(s,'$FPCVER',full_version_string); - Replace(s,'$VERSION',full_version_string); + Replace(s,'$FPCVER',version_string); + Replace(s,'$VERSION',version_string); + Replace(s,'$FULLVERSION',full_version_string); Replace(s,'$FPCDATE',date_string); Replace(s,'$FPCTARGET',target_cpu_string); Replace(s,'$FPCCPU',target_cpu_string); @@ -1563,7 +1564,11 @@ begin end. { $Log$ - Revision 1.56 2000-03-20 16:04:05 pierre + Revision 1.57 2000-03-23 15:35:47 peter + * $VERSION is now version_string + + $FULLVERSION is now full_version_string + + Revision 1.56 2000/03/20 16:04:05 pierre * probably a fix for bug 615 Revision 1.55 2000/03/08 15:39:45 daniel