mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 02:27:56 +02:00
* 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:
parent
4795192b50
commit
4788645aae
@ -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.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?
|
||||
|
@ -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');
|
||||
|
||||
|
@ -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');
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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');
|
||||
|
||||
|
@ -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');
|
||||
|
@ -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');
|
||||
|
||||
|
@ -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');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user