mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 17:59:25 +02:00
* makefile fixes (fpmake untested), 2.3.1 fields-before-methods fix for pdfvrlexico
git-svn-id: trunk@13405 -
This commit is contained in:
parent
0704d007a4
commit
d837f6d83e
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -1726,10 +1726,13 @@ packages/fpmkunit/Makefile.fpc svneol=native#text/plain
|
|||||||
packages/fpmkunit/examples/ppu2fpmake.sh svneol=native#text/plain
|
packages/fpmkunit/examples/ppu2fpmake.sh svneol=native#text/plain
|
||||||
packages/fpmkunit/fpmake.pp svneol=native#text/plain
|
packages/fpmkunit/fpmake.pp svneol=native#text/plain
|
||||||
packages/fpmkunit/src/fpmkunit.pp svneol=native#text/plain
|
packages/fpmkunit/src/fpmkunit.pp svneol=native#text/plain
|
||||||
|
packages/fpvectorial/Makefile svneol=native#text/plain
|
||||||
packages/fpvectorial/Makefile.fpc svneol=native#text/plain
|
packages/fpvectorial/Makefile.fpc svneol=native#text/plain
|
||||||
|
packages/fpvectorial/fpmake.pp svneol=native#text/plain
|
||||||
packages/fpvectorial/src/avisocncgcodereader.pas svneol=native#text/plain
|
packages/fpvectorial/src/avisocncgcodereader.pas svneol=native#text/plain
|
||||||
packages/fpvectorial/src/avisocncgcodewriter.pas svneol=native#text/plain
|
packages/fpvectorial/src/avisocncgcodewriter.pas svneol=native#text/plain
|
||||||
packages/fpvectorial/src/avisozlib.pas svneol=native#text/plain
|
packages/fpvectorial/src/avisozlib.pas svneol=native#text/plain
|
||||||
|
packages/fpvectorial/src/fpvectbuildunit.pas svneol=native#text/plain
|
||||||
packages/fpvectorial/src/fpvectorial.pas svneol=native#text/plain
|
packages/fpvectorial/src/fpvectorial.pas svneol=native#text/plain
|
||||||
packages/fpvectorial/src/fpvtocanvas.pas svneol=native#text/plain
|
packages/fpvectorial/src/fpvtocanvas.pas svneol=native#text/plain
|
||||||
packages/fpvectorial/src/pdfvectorialreader.pas svneol=native#text/plain
|
packages/fpvectorial/src/pdfvectorialreader.pas svneol=native#text/plain
|
||||||
|
3071
packages/fpvectorial/Makefile
Normal file
3071
packages/fpvectorial/Makefile
Normal file
File diff suppressed because it is too large
Load Diff
@ -8,18 +8,21 @@ version=2.2.2
|
|||||||
|
|
||||||
[require]
|
[require]
|
||||||
libc=n
|
libc=n
|
||||||
|
packages=fcl-image
|
||||||
|
|
||||||
[target]
|
[target]
|
||||||
units=fpvectorial
|
units=fpvectbuildunit
|
||||||
exampledirs=
|
exampledirs=
|
||||||
implicitunits=
|
implicitunits= avisocncgcodereader avisocncgcodewriter avisozlib fpvectorial \
|
||||||
|
fpvtocanvas pdfvectorialreader pdfvrlexico pdfvrsemantico \
|
||||||
|
pdfvrsintatico
|
||||||
|
|
||||||
[compiler]
|
[compiler]
|
||||||
includedir=src
|
includedir=src
|
||||||
sourcedir=src
|
sourcedir=src
|
||||||
|
|
||||||
[install]
|
[install]
|
||||||
buildunit=
|
buildunit=fpvectbuildunit
|
||||||
fpcpackage=y
|
fpcpackage=y
|
||||||
|
|
||||||
[shared]
|
[shared]
|
||||||
@ -30,3 +33,5 @@ fpcdir=../..
|
|||||||
|
|
||||||
[rules]
|
[rules]
|
||||||
.NOTPARALLEL:
|
.NOTPARALLEL:
|
||||||
|
|
||||||
|
|
||||||
|
57
packages/fpvectorial/fpmake.pp
Normal file
57
packages/fpvectorial/fpmake.pp
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
{$ifndef ALLPACKAGES}
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
program fpmake;
|
||||||
|
|
||||||
|
uses fpmkunit;
|
||||||
|
|
||||||
|
Var
|
||||||
|
T,TBuild : TTarget;
|
||||||
|
P : TPackage;
|
||||||
|
i : Integer;
|
||||||
|
begin
|
||||||
|
With Installer do
|
||||||
|
begin
|
||||||
|
{$endif ALLPACKAGES}
|
||||||
|
|
||||||
|
P:=AddPackage('fpvectorial');
|
||||||
|
{$ifdef ALLPACKAGES}
|
||||||
|
P.Directory:='fpvectorial';
|
||||||
|
{$endif ALLPACKAGES}
|
||||||
|
P.Version:='2.2.2-0';
|
||||||
|
P.Author := 'Felipe Monteiro de Carvalho, Pedro Sol Pegorini L de Lima';
|
||||||
|
P.License := 'LGPL with static linking modification ';
|
||||||
|
P.HomepageURL := 'www.freepascal.org';
|
||||||
|
P.Email := '';
|
||||||
|
P.Description := '???';
|
||||||
|
P.NeedLibC:= true;
|
||||||
|
|
||||||
|
P.Dependencies.Add('fcl-image');
|
||||||
|
|
||||||
|
P.SourcePath.Add('src');
|
||||||
|
|
||||||
|
T:=P.Targets.AddImplicitUnit('jwazmouse.pas');
|
||||||
|
T:=P.Targets.AddImplicitUnit('avisocncgcodereader');
|
||||||
|
T:=P.Targets.AddImplicitUnit('avisocncgcodewriter');
|
||||||
|
T:=P.Targets.AddImplicitUnit('avisozlib');
|
||||||
|
T:=P.Targets.AddImplicitUnit('fpvectorial');
|
||||||
|
T:=P.Targets.AddImplicitUnit('fpvtocanvas');
|
||||||
|
T:=P.Targets.AddImplicitUnit('pdfvectorialreader');
|
||||||
|
T:=P.Targets.AddImplicitUnit('pdfvrlexico');
|
||||||
|
T:=P.Targets.AddImplicitUnit('pdfvrsemantico');
|
||||||
|
T:=P.Targets.AddImplicitUnit('pdfvrsintaticoa');
|
||||||
|
|
||||||
|
// Build unit depending on all implicit units
|
||||||
|
TBuild:=P.Targets.AddUnit('fpvectorialbuildunit.pp');
|
||||||
|
TBuild.Install:=False;
|
||||||
|
For I:=0 to P.Targets.Count-1 do
|
||||||
|
begin
|
||||||
|
T:=P.Targets.TargetItems[I];
|
||||||
|
if T.TargetType=ttImplicitUnit then
|
||||||
|
TBuild.Dependencies.AddUnit(T.Name);
|
||||||
|
end;
|
||||||
|
|
||||||
|
{$ifndef ALLPACKAGES}
|
||||||
|
Run;
|
||||||
|
end;
|
||||||
|
end.
|
||||||
|
{$endif ALLPACKAGES}
|
9
packages/fpvectorial/src/fpvectbuildunit.pas
Normal file
9
packages/fpvectorial/src/fpvectbuildunit.pas
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
unit fpvectbuildunit;
|
||||||
|
|
||||||
|
interface
|
||||||
|
Uses
|
||||||
|
avisocncgcodereader,avisocncgcodewriter,avisozlib,fpvectorial,
|
||||||
|
fpvtocanvas,pdfvectorialreader,pdfvrlexico,pdfvrsemantico,pdfvrsintatico;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
end.
|
@ -38,11 +38,11 @@ type
|
|||||||
|
|
||||||
AnLexico = class
|
AnLexico = class
|
||||||
public
|
public
|
||||||
|
Doc: TStream;
|
||||||
|
bytesRemaining: Int64;
|
||||||
constructor Create();
|
constructor Create();
|
||||||
function getToken(): Token;
|
function getToken(): Token;
|
||||||
function getPageToken(): Token;
|
function getPageToken(): Token;
|
||||||
Doc: TStream;
|
|
||||||
bytesRemaining: Int64;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
Loading…
Reference in New Issue
Block a user