Browse Source

* disabled for Darwin because untested

git-svn-id: trunk@30665 -
Jonas Maebe 10 years ago
parent
commit
299374b345
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/libenet/fpmake.pp

+ 2 - 1
packages/libenet/fpmake.pp

@@ -21,7 +21,8 @@ begin
     P.SourcePath.Add('src');
     P.SourcePath.Add('examples');
     P.IncludePath.Add('src');
-    P.OSes := AllUnixOSes+AllWindowsOSes-[qnx];
+    { only enable for darwin after testing }
+    P.OSes := AllUnixOSes+AllWindowsOSes-[qnx,darwin,iphonesim];
     P.Dependencies.Add('rtl-extra'); // winsock2
     
     T:=P.Targets.AddUnit('enettypes.pp');