summaryrefslogtreecommitdiff
path: root/packages/hash
diff options
context:
space:
mode:
authorjoost <joost@3ad0048d-3df7-0310-abae-a5850022a9f2>2010-04-15 20:26:03 +0000
committerjoost <joost@3ad0048d-3df7-0310-abae-a5850022a9f2>2010-04-15 20:26:03 +0000
commit52d05e32940af386fc8bc4b91a5fae9bb98829f8 (patch)
treeab289a1df3b211a8cbf2bf6ce775f1e895be68ea /packages/hash
parent760ba5847365999ebd16af130d4572cefda6ac0b (diff)
downloadfpc-52d05e32940af386fc8bc4b91a5fae9bb98829f8.tar.gz
Fixed fpmake.pp files:
* ExternalURL does not exist anymore * Do not add dependencies on files in other packages, add a package dependency on the package where the files are in instead * Replaced the copy of fcl-base's fpmake.pp in fcl-extra with a real one * Fixed some dependencies and file-names git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@15148 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/hash')
-rw-r--r--packages/hash/fpmake.pp3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/hash/fpmake.pp b/packages/hash/fpmake.pp
index 68283b9954..f97417b9b9 100644
--- a/packages/hash/fpmake.pp
+++ b/packages/hash/fpmake.pp
@@ -29,13 +29,12 @@ begin
T:=P.Targets.AddUnit('src/sha1.pp');
T:=P.Targets.AddUnit('src/crc.pas');
T:=P.Targets.AddUnit('src/ntlm.pas');
- T:=P.Targets.AddUnit('src/sha1.pas');
T:=P.Targets.AddUnit('src/uuid.pas');
T:=P.Targets.AddUnit('src/unixcrypt.pas');
T.OSes:=[Linux];
T:=P.Targets.AddExampleunit('examples/mdtest.pas');
T:=P.Targets.AddExampleunit('examples/crctest.pas');
- T:=P.Targets.AddExampleunit('examples/sha1test.pas');
+ T:=P.Targets.AddExampleunit('examples/sha1test.pp');
// md5.ref
{$ifndef ALLPACKAGES}
Run;