git-svn-id: trunk@20040 -
@@ -19,6 +19,7 @@ begin
P.Version:='2.7.1';
P.Author := 'Marco van de Voort';
P.License := 'Library: LGPL2 or later, header: LGPL with modification, ';
+ P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,linux];
P.HomepageURL := 'www.freepascal.org';
P.Email := '';
P.Description := 'A libiconv header translation.';
@@ -21,6 +21,7 @@ begin
P.Author := 'Library: Daniel Stenberg, header: Free Pascal development team';
P.License := 'Library: MIT, header: LGPL with modification, ';
+ P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,linux];
P.Description := 'Library to fetch files from URLs using many protocols.';
P.NeedLibC:= true; // true for headers that indirectly link to libc?
@@ -17,6 +17,7 @@ begin
P.Directory:='ncurses';
{$endif ALLPACKAGES}
P.SourcePath.Add('src');
P.IncludePath.Add('src');
P.Directory:='pthreads';
@@ -20,6 +20,7 @@ begin
P.Author := 'Michael van Canneyt, Marco van de Voort';
P.License := 'LGPL with modification, ';
+ P.OSes := [freebsd,linux];
P.Description := 'Headers to access Unix groups and users.';
P.NeedLibC:= false;
@@ -18,6 +18,7 @@ begin
T:=P.Targets.AddUnit('utmp.pp');
+ P.OSes := [linux];
T:=P.Targets.AddUnit('libuuid.pp');
T:=P.Targets.AddUnit('macuuid.pp');
@@ -17,6 +17,10 @@ begin
P.Directory:='x11';
+ P.OSes:=[beos,haiku,freebsd,solaris,netbsd,openbsd,linux,os2,emx];
+ // Do not build x11 on iPhone (=arm-darwin)
+ if Defaults.CPU<>arm then
+ P.OSes := P.OSes + [darwin];
@@ -18,6 +18,11 @@ begin
+ P.OSes := [beos,haiku,freebsd,solaris,netbsd,openbsd,linux];
+
P.Dependencies.Add('x11');