Disable jvm-android and jvm-java targets for fprcp, h2pas and tply packages because they use memory allocation or fpc_get_output

git-svn-id: trunk@41106 -
This commit is contained in:
pierre 2019-01-29 09:01:42 +00:00
parent d1878fe5b2
commit d2a04366d4
3 changed files with 13 additions and 0 deletions

View File

@ -16,6 +16,11 @@ begin
begin
P:=AddPackage('utils-fprcp');
P.ShortName:='fprcp';
{ java and jvm-android do not support
getmem/freemem and new/dispose used in
these sources }
if Defaults.CPU=jvm then
P.OSes := P.OSes - [java,android];
P.Author := '<various>';
P.License := 'LGPL with modification';

View File

@ -16,6 +16,10 @@ begin
begin
P:=AddPackage('utils-h2pas');
P.ShortName:='h2pas';
{ java and jvm-android do not support
fpc_get_output used in these sources }
if Defaults.CPU=jvm then
P.OSes := P.OSes - [java,android];
P.Author := '<various>';
P.License := 'LGPL with modification';

View File

@ -17,6 +17,10 @@ begin
begin
P:=AddPackage('utils-lexyacc');
P.ShortName:='tply';
{ java and jvm-android do not support
fpc_get_output used in these sources }
if Defaults.CPU=jvm then
P.OSes := P.OSes - [java,android];
P.Author := '<various>';
P.License := 'LGPL with modification';