* missing files added

git-svn-id: trunk@9947 -
This commit is contained in:
marco 2008-01-26 17:26:21 +00:00
parent 818e713317
commit 4fa4c0559b
3 changed files with 2313 additions and 0 deletions

2
.gitattributes vendored
View File

@ -4269,6 +4269,7 @@ packages/oracle/examples/Makefile svneol=native#text/plain
packages/oracle/examples/Makefile.fpc svneol=native#text/plain
packages/oracle/examples/oraclew.pp svneol=native#text/plain
packages/oracle/examples/test01.pp svneol=native#text/plain
packages/oracle/fpmake.pp svneol=native#text/plain
packages/oracle/src/nzerror.inc svneol=native#text/plain
packages/oracle/src/nzt.inc svneol=native#text/plain
packages/oracle/src/oci.inc svneol=native#text/plain
@ -4430,6 +4431,7 @@ packages/regexpr/Makefile.fpc svneol=native#text/plain
packages/regexpr/fpmake.pp svneol=native#text/plain
packages/regexpr/src/regexpr.pp svneol=native#text/plain
packages/regexpr/tests/testreg1.pp svneol=native#text/plain
packages/sqlite/Makefile svneol=native#text/plain
packages/sqlite/Makefile.fpc svneol=native#text/plain
packages/sqlite/fpmake.pp svneol=native#text/plain
packages/sqlite/src/sqlite.pp svneol=native#text/plain

60
packages/oracle/fpmake.pp Normal file
View File

@ -0,0 +1,60 @@
{$ifndef ALLPACKAGES}
{$mode objfpc}{$H+}
program fpmake;
uses fpmkunit;
Var
P : TPackage;
T : TTarget;
begin
With Installer do
begin
{$endif ALLPACKAGES}
P:=AddPackage('oracle');
{$ifdef ALLPACKAGES}
P.Directory:='oracle';
{$endif ALLPACKAGES}
P.Version:='2.0.0';
P.SourcePath.Add('src');
T:=P.Targets.AddUnit('ocidyn.pp');
with T.Dependencies do
begin
AddInclude('oci.inc');
AddInclude('ocidfn.inc');
AddInclude('oci1.inc');
AddInclude('oro_interface.inc');
AddInclude('orl.inc');
AddInclude('ort.inc');
AddInclude('ociap.inc');
AddInclude('nzt.inc');
AddInclude('nzerror.inc');
AddInclude('oro_implementation.inc');
AddUnit('oratypes');
end;
T:=P.Targets.AddUnit('oci.pp');
with T.Dependencies do
begin
AddInclude('oci.inc');
AddInclude('ocidfn.inc');
AddInclude('oci1.inc');
AddInclude('oro_interface.inc');
AddInclude('orl.inc');
AddInclude('ort.inc');
AddInclude('ociap.inc');
AddInclude('nzt.inc');
AddInclude('nzerror.inc');
AddInclude('oro_implementation.inc');
AddUnit('oratypes');
end;
T:=P.Targets.AddUnit('oraoci.pp');
T:=P.Targets.AddUnit('oratypes.pp');
{$ifndef ALLPACKAGES}
Run;
end;
end.
{$endif ALLPACKAGES}

2251
packages/sqlite/Makefile Normal file

File diff suppressed because it is too large Load Diff