Browse Source

* avoid redefinition of source OS

git-svn-id: trunk@6062 -
pierre 18 years ago
parent
commit
903d6db366
1 changed files with 4 additions and 0 deletions
  1. 4 0
      compiler/systems/i_symbian.pas

+ 4 - 0
compiler/systems/i_symbian.pas

@@ -93,10 +93,14 @@ implementation
 initialization
 
 {$ifdef CPU86}
+  {$ifdef Symbian}
   set_source_info(system_i386_symbian_info);
+  {$endif Symbian}
 {$endif CPU86}
 
 {$ifdef CPUARM}
+  {$ifdef Symbian}
   set_source_info(system_arm_symbian_info);
+  {$endif Symbian}
 {$endif CPUARM}
 end.