소스 검색

Fix bootstrapping.

rtl/darwin/sysinit.pas:
  * enable the code only when no longer bootstrapping with 2.6.x

git-svn-id: branches/svenbarth/packages@31930 -
svenbarth 10 년 전
부모
커밋
485cbeb3b9
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      rtl/darwin/sysinit.pas

+ 4 - 0
rtl/darwin/sysinit.pas

@@ -18,6 +18,8 @@ interface
 
 implementation
 
+{$ifndef ver2_6}
+
 procedure PascalMain; cdecl; external name 'PASCALMAIN';
 procedure SysEntry(constref info: TEntryInformation); external name 'FPC_SysEntry';
 
@@ -72,4 +74,6 @@ begin
   SysEntry(SysInitEntryInformation);
 end;
 
+{$endif ver2_6}
+
 end.