Browse Source

- disable package fcl-res for i8086-msdos, since it doesn't build in 186+ mode,
so it prevents making an msdos installer. Note that the fcl-res package is
currently unusable on this platform anyway, because it uses unit classes,
which exceeds the 64kb global data limit (due to too much rtti) and thus
doesn't work in any memory model currently supported (it should work in the
huge model, but that is not ready yet).

git-svn-id: trunk@29440 -

nickysn 10 years ago
parent
commit
5406b13a08
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-res/fpmake.pp

+ 1 - 1
packages/fcl-res/fpmake.pp

@@ -24,7 +24,7 @@ begin
     P.Email := '';
     P.Description := 'Resource handling of Free Component Libraries (FCL), FPC''s OOP library.';
     P.NeedLibC:= false;
-    P.OSes:=AllOSes-[embedded];
+    P.OSes:=AllOSes-[embedded,msdos];
 
     P.SourcePath.Add('src');
     P.IncludePath.Add('src');