/usr/share/fpcsrc/2.6.2/compiler/version.pas is in fpc-source-2.6.2 2.6.2-8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | {
Copyright (c) 1998-2002 by Florian Klaempfl
Version/target constants
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
****************************************************************************
}
unit version;
{$i fpcdefs.inc}
interface
const
{ version string }
version_nr = '2';
release_nr = '6';
patch_nr = '2';
minorpatch = '';
{ word version for ppu file }
wordversion = ((ord(version_nr)-ord('0')) shl 14)+
((ord(release_nr)-ord('0')) shl 7)+
(ord(patch_nr)-ord('0'));
{ date string }
date_string = {$I %DATE%};
{ source cpu string }
{$ifdef cpu86}
source_cpu_string = 'i386';
{$endif cpu86}
{$ifdef cpupowerpc32}
source_cpu_string = 'powerpc';
{$endif cpupowerpc32}
{$ifdef cpupowerpc64}
source_cpu_string = 'powerpc64';
{$endif cpupowerpc64}
{$ifdef cpum68k}
source_cpu_string = 'm68k';
{$endif cpum68k}
{$ifdef cpuia64}
source_cpu_string = 'ia64';
{$endif cpuia64}
{$ifdef cpux86_64}
source_cpu_string = 'x86_64';
{$endif cpux86_64}
{$ifdef cpusparc}
source_cpu_string = 'sparc';
{$endif cpusparc}
{$ifdef cpusalpha}
source_cpu_string = 'alpha';
{$endif cpualpha}
{$ifdef cpuvis}
source_cpu_string = 'vis';
{$endif cpuvis}
{$ifdef cpuarm}
source_cpu_string = 'arm';
{$endif cpuarm}
function version_string:string;
function full_version_string:string;
implementation
const
FullVersionString={$INCLUDE version.inc};
function version_string:string;
begin
version_string := version_nr+'.'+release_nr+'.'+patch_nr;
end;
function full_version_string:string;
begin
full_version_string := FullVersionString;
end;
end.
|