mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-31 11:30:30 +02:00
Disable targets that do not support fcl-base for utils packages that need fcl-base
git-svn-id: trunk@41069 -
This commit is contained in:
parent
0603f1eca2
commit
cab2b6261a
@ -210,6 +210,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-fpcm');
|
||||
P.ShortName:='fpcm';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -17,6 +17,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-fpcmkcfg');
|
||||
P.ShortName:='fcmk';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-fpcres');
|
||||
P.ShortName:='fpres';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := 'Giulio Bernardi';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-fpcreslipo');
|
||||
P.ShortName:='fpcreslipo';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := 'Giulio Bernardi';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -18,6 +18,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-fpdoc');
|
||||
P.ShortName:='fpdoc';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -50,6 +50,10 @@ begin
|
||||
With Installer do
|
||||
begin
|
||||
P:=AddPackage('utils');
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-importtl');
|
||||
P.ShortName:='importttl';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-instantfpc');
|
||||
P.ShortName:='instantfpc';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := '<various>';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -18,6 +18,9 @@ begin
|
||||
P.Dependencies.Add('fcl-json');
|
||||
|
||||
P.ShortName:='json2pas';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := 'Michael Van Canneyt';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-pas2fpm');
|
||||
p.ShortName:='p2fm';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := 'Free Pascal Team';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-pas2ut');
|
||||
P.ShortName:='p2ut';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := 'Free Pascal Team';
|
||||
P.License := 'LGPL with modification';
|
||||
|
@ -16,6 +16,9 @@ begin
|
||||
begin
|
||||
P:=AddPackage('utils-unicode');
|
||||
P.ShortName:='ucode';
|
||||
P.OSes:=AllOSes-[embedded,msdos,win16,macos,palmos];
|
||||
if Defaults.CPU=jvm then
|
||||
P.OSes := P.OSes - [java,android];
|
||||
|
||||
P.Author := 'Inoussa OUEDRAOGO';
|
||||
P.License := 'LGPL with modification';
|
||||
|
Loading…
Reference in New Issue
Block a user