Browse Source

Fix bootstrapping.

rtl/objpas/objpas.pp:
  * define FPC_HAS_INDIRECT_MAIN_INFORMATION for Darwin only while not bootstrapping with 2.6.x

git-svn-id: branches/svenbarth/packages@31931 -
svenbarth 9 years ago
parent
commit
9028de29b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rtl/objpas/objpas.pp

+ 1 - 1
rtl/objpas/objpas.pp

@@ -311,7 +311,7 @@ Type
    end;
    PResourceStringTableList = ^TResourceStringTableList;
 
-{$ifdef win32}
+{$if defined(win32) or (defined(darwin) and not defined(ver2_6))}
   {$define FPC_HAS_INDIRECT_MAIN_INFORMATION}
 {$endif}