diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-06-15 11:42:49 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-06-15 11:42:49 +0200 |
| commit | 25c58a81ca9202af54d28888d2b068ebeb2a376f (patch) | |
| tree | b0ad200b316f4dec392d1640bd6e3edea6be3606 /UConfig.pas | |
| parent | c9a02bf590248c0bd8e1343198d3f9c13ce118c1 (diff) | |
| download | tuxcmd-25c58a81ca9202af54d28888d2b068ebeb2a376f.tar.xz | |
Portability fixes
Diffstat (limited to 'UConfig.pas')
| -rw-r--r-- | UConfig.pas | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/UConfig.pas b/UConfig.pas index 4dd13aa..034fd11 100644 --- a/UConfig.pas +++ b/UConfig.pas @@ -25,10 +25,10 @@ uses Classes, ULocale; resourcestring ConstAppTitle = 'Tux Commander'; - ConstAboutVersion = '0.6.43-dev'; - ConstAboutBuildDate = '2008-06-14'; + ConstAboutVersion = '0.6.44-dev'; + ConstAboutBuildDate = '2008-06-15'; -{$IFDEF __FPC__} +{$IFDEF FPC} {$INCLUDE fpcver.inc} {$ENDIF} @@ -1121,9 +1121,10 @@ end; initialization SetDefaults; ParseCMDLine; - {$IFDEF __FPC__} + {$IFDEF FPC} DebugMsg(['Tux Commander v', ConstAboutVersion, ' [', ConstAboutBuildDate, '] FreePascal build ', - '(version ', ConstFPCVersionString, ' ', ConstFPCDateString, ', define ', {$IFDEF CPU64}'x86_64'{$ELSE}'i386'{$ENDIF}, + '(version ', ConstFPCVersionString, ' ', ConstFPCDateString, ', define ', + {$IFDEF CPU64} {$IFDEF ENDIAN_LITTLE}'x86_64'{$ELSE}'ppc64'{$ENDIF} {$ELSE} {$IFNDEF CPUPOWERPC}'i386'{$ELSE}'ppc' {$ENDIF} {$ENDIF}, ', compiled on ', ConstFPCCompilerOSString, '/', ConstFPCCompilerHostProcessorString, ' for ', ConstFPCTargetOSString, '/', ConstFPCTargetProcessorString, ')']); {$ELSE} |
