* version changed to 1.9.3

This commit is contained in:
florian 2004-01-11 20:59:41 +00:00
parent 970efdcc9c
commit fc60443584

View File

@ -28,12 +28,12 @@ interface
const const
{ word version for ppu file } { word version for ppu file }
wordversion = (1 shl 14)+(9 shl 7) + 0; wordversion = (1 shl 14)+(9 shl 7) + 3;
{ version string } { version string }
version_nr = '1'; version_nr = '1';
release_nr = '9'; release_nr = '9';
patch_nr = '2'; patch_nr = '3';
minorpatch = ''; minorpatch = '';
{ date string } { date string }
@ -47,19 +47,19 @@ interface
{ source cpu string } { source cpu string }
{$ifdef cpu86} {$ifdef cpu86}
source_cpu_string = 'i386'; source_cpu_string = 'i386';
{$endif} {$endif cpu86}
{$ifdef cpupowerpc} {$ifdef cpupowerpc}
source_cpu_string = 'powerpc'; source_cpu_string = 'powerpc';
{$endif} {$endif cpupowerpc}
{$ifdef cpum68k} {$ifdef cpum68k}
source_cpu_string = 'm68k'; source_cpu_string = 'm68k';
{$endif cpum68k} {$endif cpum68k}
{$ifdef cpuia64} {$ifdef cpuia64}
target_cpu_string = 'ia64'; source_cpu_string = 'ia64';
{$endif} {$endif cpuia64}
{$ifdef cpu86_64} {$ifdef cpu86_64}
source_cpu_string = 'x86_64'; source_cpu_string = 'x86_64';
{$endif} {$endif cpu86_64}
{$ifdef cpusparc} {$ifdef cpusparc}
source_cpu_string = 'sparc'; source_cpu_string = 'sparc';
{$endif cpusparc} {$endif cpusparc}
@ -69,6 +69,9 @@ interface
{$ifdef cpuvis} {$ifdef cpuvis}
source_cpu_string = 'vis'; source_cpu_string = 'vis';
{$endif cpuvis} {$endif cpuvis}
{$ifdef cpuarm}
source_cpu_string = 'arm';
{$endif cpuarm}
function version_string:string; function version_string:string;
function full_version_string:string; function full_version_string:string;
@ -90,7 +93,10 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.21 2004-01-03 12:31:44 michael Revision 1.22 2004-01-11 20:59:41 florian
* version changed to 1.9.3
Revision 1.21 2004/01/03 12:31:44 michael
+ Changed version to 1.9.2 + Changed version to 1.9.2
Revision 1.20 2003/11/06 15:58:27 peter Revision 1.20 2003/11/06 15:58:27 peter