* Do not compile custfcgi and fpfcgi on Darwin

git-svn-id: trunk@20086 -
This commit is contained in:
joost 2012-01-15 14:58:26 +00:00
parent 4b24220de9
commit 480d075bb4

View File

@ -17,6 +17,7 @@ begin
P.Directory:='fcl-web';
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,linux,win32,win64,wince];
P.Dependencies.Add('fcl-base');
P.Dependencies.Add('fcl-db');
P.Dependencies.Add('fcl-xml');
@ -113,12 +114,12 @@ begin
end;
with P.Targets.AddUnit('fpfcgi.pp') do
begin
OSes:=AllOses-[wince];
OSes:=AllOses-[wince,darwin,iphonesim];
Dependencies.AddUnit('custfcgi');
end;
with P.Targets.AddUnit('custfcgi.pp') do
begin
OSes:=AllOses-[wince];
OSes:=AllOses-[wince,darwin,iphonesim];
Dependencies.AddUnit('httpdefs');
Dependencies.AddUnit('custweb');
ResourceStrings:=true;