rtl/darwin/sysinit.pas: * enable the code only when no longer bootstrapping with 2.6.x git-svn-id: branches/svenbarth/packages@31930 -
@@ -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.