From 6ff239a8e7bf965357e17bf84724f0cda692fe2f Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 8 Jun 1999 22:16:06 +0000 Subject: [PATCH] * version 0.99.12 --- utils/ppudump.pp | 7 +++++-- utils/ppumove.pp | 13 ++++++++----- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/utils/ppudump.pp b/utils/ppudump.pp index fc04ea29d3..9541c37d28 100644 --- a/utils/ppudump.pp +++ b/utils/ppudump.pp @@ -26,7 +26,7 @@ program pppdump; uses ppu; const - Version = 'Version 0.99.11'; + Version = 'Version 0.99.12'; Title = 'PPU-Analyser'; Copyright = 'Copyright (c) 1995-99 by the Free Pascal Development Team'; @@ -1181,7 +1181,10 @@ begin end. { $Log$ - Revision 1.2 1999-05-14 17:52:04 peter + Revision 1.3 1999-06-08 22:16:06 peter + * version 0.99.12 + + Revision 1.2 1999/05/14 17:52:04 peter * new deref Revision 1.1 1999/05/12 16:11:39 peter diff --git a/utils/ppumove.pp b/utils/ppumove.pp index 4e047fe01b..cc68c2314f 100644 --- a/utils/ppumove.pp +++ b/utils/ppumove.pp @@ -33,9 +33,9 @@ uses getopts; const - Version = 'Version 0.99.7'; + Version = 'Version 0.99.12'; Title = 'PPU-Mover'; - Copyright = 'Copyright (c) 1998 by the Free Pascal Development Team'; + Copyright = 'Copyright (c) 1998-99 by the Free Pascal Development Team'; ShortOpts = 'o:e:d:qhsvbw'; BufSize = 4096; @@ -280,7 +280,7 @@ begin if IsStaticLinked then untilb:=iblinkstaticlibs else - untilb:=iblinkofiles; + untilb:=iblinkunitfiles; repeat b:=inppu^.readentry; if b in [ibendinterface,ibend] then @@ -302,7 +302,7 @@ begin { we have now reached the section for the files which need to be added, now add them to the list } case b of - iblinkofiles : begin + iblinkunitfiles : begin while not inppu^.endofentry do AddToLinkFiles(inppu^.getstring); end; @@ -559,7 +559,10 @@ begin end. { $Log$ - Revision 1.1 1999-05-12 16:11:39 peter + Revision 1.2 1999-06-08 22:16:07 peter + * version 0.99.12 + + Revision 1.1 1999/05/12 16:11:39 peter * moved Revision 1.3 1998/08/17 10:26:30 peter