* Set for which os'es the packages have to be compiled for those packages that do not compile on Windows

git-svn-id: trunk@20040 -
This commit is contained in:
joost 2012-01-10 18:34:21 +00:00
parent 4795192b50
commit 4788645aae
9 changed files with 16 additions and 0 deletions

View File

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

View File

@ -21,6 +21,7 @@ begin
P.Author := 'Library: Daniel Stenberg, header: Free Pascal development team';
P.License := 'Library: MIT, header: LGPL with modification, ';
P.HomepageURL := 'www.freepascal.org';
P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,linux];
P.Email := '';
P.Description := 'Library to fetch files from URLs using many protocols.';
P.NeedLibC:= true; // true for headers that indirectly link to libc?

View File

@ -17,6 +17,7 @@ begin
P.Directory:='ncurses';
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,linux];
P.SourcePath.Add('src');
P.IncludePath.Add('src');

View File

@ -17,6 +17,7 @@ begin
P.Directory:='pthreads';
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,linux];
P.SourcePath.Add('src');
P.IncludePath.Add('src');

View File

@ -20,6 +20,7 @@ begin
P.Author := 'Michael van Canneyt, Marco van de Voort';
P.License := 'LGPL with modification, ';
P.HomepageURL := 'www.freepascal.org';
P.OSes := [freebsd,linux];
P.Email := '';
P.Description := 'Headers to access Unix groups and users.';
P.NeedLibC:= false;

View File

@ -18,6 +18,7 @@ begin
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.SourcePath.Add('src');
P.OSes := [beos,haiku,freebsd,darwin,iphonesim,solaris,netbsd,openbsd,linux];
T:=P.Targets.AddUnit('utmp.pp');

View File

@ -18,6 +18,7 @@ begin
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.SourcePath.Add('src');
P.OSes := [linux];
T:=P.Targets.AddUnit('libuuid.pp');
T:=P.Targets.AddUnit('macuuid.pp');

View File

@ -17,6 +17,10 @@ begin
P.Directory:='x11';
{$endif ALLPACKAGES}
P.Version:='2.7.1';
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];
P.SourcePath.Add('src');
P.IncludePath.Add('src');

View File

@ -18,6 +18,11 @@ begin
{$endif ALLPACKAGES}
P.Version:='2.7.1';
P.SourcePath.Add('src');
P.OSes := [beos,haiku,freebsd,solaris,netbsd,openbsd,linux];
// Do not build x11 on iPhone (=arm-darwin)
if Defaults.CPU<>arm then
P.OSes := P.OSes + [darwin];
P.IncludePath.Add('src');
P.Dependencies.Add('x11');