Disable fprcp, h2pas and tply pacakges for msdos and win16 because the programs are too big

git-svn-id: trunk@41120 -
This commit is contained in:
pierre 2019-01-29 14:08:03 +00:00
parent 6617fa7b48
commit 21d3e14c6c
3 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,8 @@ begin
P.OSes := P.OSes - [java,android];
{ palmos does not have classes }
P.OSes := P.OSes - [palmos];
{ Program does not fit in 16-bit memory constraints }
P.OSes := P.OSes - [msdos,win16];
P.Author := '<various>';
P.License := 'LGPL with modification';

View File

@ -22,6 +22,8 @@ begin
P.OSes := P.OSes - [java,android];
{ palmos does not support command line parameters }
P.OSes := P.OSes - [palmos];
{ Program does not fit in 16-bit memory constraints }
P.OSes := P.OSes - [msdos,win16];
P.Author := '<various>';
P.License := 'LGPL with modification';

View File

@ -23,6 +23,8 @@ begin
P.OSes := P.OSes - [java,android];
{ palmos does not support command line parameters }
P.OSes := P.OSes - [palmos];
{ Program does not fit in 16-bit memory constraints }
P.OSes := P.OSes - [msdos,win16];
P.Author := '<various>';
P.License := 'LGPL with modification';