Browse Source

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

git-svn-id: trunk@41120 -
pierre 6 years ago
parent
commit
21d3e14c6c
3 changed files with 6 additions and 0 deletions
  1. 2 0
      utils/fprcp/fpmake.pp
  2. 2 0
      utils/h2pas/fpmake.pp
  3. 2 0
      utils/tply/fpmake.pp

+ 2 - 0
utils/fprcp/fpmake.pp

@@ -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';

+ 2 - 0
utils/h2pas/fpmake.pp

@@ -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';

+ 2 - 0
utils/tply/fpmake.pp

@@ -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';