From 5406b13a0897143e8babdfb07bf0db08573c0d11 Mon Sep 17 00:00:00 2001 From: nickysn Date: Sun, 11 Jan 2015 22:32:35 +0000 Subject: [PATCH] - 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 - --- packages/fcl-res/fpmake.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/fcl-res/fpmake.pp b/packages/fcl-res/fpmake.pp index 0d8b08c0ca..3f90ec2fd7 100644 --- a/packages/fcl-res/fpmake.pp +++ b/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');