mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 18:43:42 +02:00
63 lines
1.7 KiB
ObjectPascal
63 lines
1.7 KiB
ObjectPascal
{$ifndef ALLPACKAGES}
|
|
{$mode objfpc}{$H+}
|
|
program fpmake;
|
|
|
|
uses fpmkunit;
|
|
|
|
Var
|
|
P : TPackage;
|
|
T : TTarget;
|
|
begin
|
|
With Installer do
|
|
begin
|
|
{$endif ALLPACKAGES}
|
|
|
|
P:=AddPackage('httpd13');
|
|
P.ShortName:='hd13';
|
|
{$ifdef ALLPACKAGES}
|
|
P.Directory:=ADirectory;
|
|
{$endif ALLPACKAGES}
|
|
P.Version:='3.3.1';
|
|
P.Author := 'Library: Apache Foundation, header: Felipe Monteiro de Carvalho';
|
|
P.License := 'Library: Apache License 2, header: LGPL with modification, ';
|
|
P.HomepageURL := 'www.freepascal.org';
|
|
P.Email := '';
|
|
P.Description := 'Headers for the Apache 1.3 www server';
|
|
P.NeedLibC:= true; // true for headers that indirectly link to libc?
|
|
{$ifdef ALLPACKAGES}
|
|
P.OSes := []; // By default, do not build this package
|
|
{$else ALLPACKAGES}
|
|
P.OSes := AllUnixOSes+AllWindowsOSes-[qnx];
|
|
{$endif ALLPACKAGES}
|
|
P.SourcePath.Add('src');
|
|
P.IncludePath.Add('src');
|
|
|
|
// P.Dependencies.Add('x11');
|
|
|
|
T:=P.Targets.AddUnit('httpd.pas');
|
|
with T.Dependencies do
|
|
begin
|
|
AddInclude('httpd.inc');
|
|
AddInclude('ap_config.inc');
|
|
AddInclude('ap_mmn.inc');
|
|
AddInclude('hsregex.inc');
|
|
AddInclude('ap_alloc.inc');
|
|
AddInclude('readdir.inc');
|
|
AddInclude('buff.inc');
|
|
AddInclude('ap.inc');
|
|
AddInclude('util_uri.inc');
|
|
AddInclude('http_config.inc');
|
|
AddInclude('http_core.inc');
|
|
AddInclude('http_log.inc');
|
|
AddInclude('http_main.inc');
|
|
AddInclude('http_protocol.inc');
|
|
AddInclude('http_request.inc');
|
|
AddInclude('http_vhost.inc');
|
|
end;
|
|
|
|
{$ifndef ALLPACKAGES}
|
|
Run;
|
|
end;
|
|
end.
|
|
{$endif ALLPACKAGES}
|