Sfoglia il codice sorgente

* Do not compile custfcgi and fpfcgi on Darwin

git-svn-id: trunk@20086 -
joost 13 anni fa
parent
commit
480d075bb4
1 ha cambiato i file con 3 aggiunte e 2 eliminazioni
  1. 3 2
      packages/fcl-web/fpmake.pp

+ 3 - 2
packages/fcl-web/fpmake.pp

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