* Renamefest. Compiler part. Not that hard.

This commit is contained in:
marco 2001-01-21 20:32:45 +00:00
parent 738f0589d6
commit ad6ba5dd70
5 changed files with 27 additions and 12 deletions

View File

@ -91,7 +91,7 @@ Implementation
uses uses
cutils,script,fmodule,systems,verbose cutils,script,fmodule,systems,verbose
{$ifdef unix} {$ifdef unix}
,linux ,unix
{$endif} {$endif}
{$ifdef i386} {$ifdef i386}
{$ifndef NoAg386Bin} {$ifndef NoAg386Bin}
@ -597,7 +597,10 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.9 2001-01-12 19:19:44 peter Revision 1.10 2001-01-21 20:32:45 marco
* Renamefest. Compiler part. Not that hard.
Revision 1.9 2001/01/12 19:19:44 peter
* fixed searching for utils * fixed searching for utils
Revision 1.8 2000/12/25 00:07:25 peter Revision 1.8 2000/12/25 00:07:25 peter

View File

@ -38,7 +38,7 @@ interface
uses uses
{$ifdef unix} {$ifdef unix}
{$define has_signal} {$define has_signal}
linux, Unix,
{$endif} {$endif}
{$ifdef go32v2} {$ifdef go32v2}
{$define has_signal} {$define has_signal}
@ -101,7 +101,10 @@ end.
{ {
$Log$ $Log$
Revision 1.5 2000-11-13 15:26:12 marco Revision 1.6 2001-01-21 20:32:45 marco
* Renamefest. Compiler part. Not that hard.
Revision 1.5 2000/11/13 15:26:12 marco
* Renamefest * Renamefest
Revision 1.4 2000/09/24 15:06:11 peter Revision 1.4 2000/09/24 15:06:11 peter

View File

@ -139,7 +139,7 @@ implementation
uses uses
{$ifdef Unix} {$ifdef Unix}
linux, Unix,
{$endif} {$endif}
{$ifdef delphi} {$ifdef delphi}
dmisc dmisc
@ -363,7 +363,10 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.11 2000-12-26 15:58:29 peter Revision 1.12 2001-01-21 20:32:45 marco
* Renamefest. Compiler part. Not that hard.
Revision 1.11 2000/12/26 15:58:29 peter
* check for verbosity in verbose instead of comphook * check for verbosity in verbose instead of comphook
Revision 1.10 2000/12/25 00:07:25 peter Revision 1.10 2000/12/25 00:07:25 peter

View File

@ -31,7 +31,7 @@ interface
windows, windows,
{$endif} {$endif}
{$ifdef unix} {$ifdef unix}
linux, unix,
{$endif} {$endif}
{$ifdef os2} {$ifdef os2}
doscalls, doscalls,
@ -957,7 +957,7 @@ implementation
{$endif} {$endif}
begin begin
{$ifdef unix} {$ifdef unix}
GetEnvPchar:=Linux.Getenv(envname); GetEnvPchar:=Unix.Getenv(envname);
{$define GETENVOK} {$define GETENVOK}
{$endif} {$endif}
{$ifdef win32} {$ifdef win32}
@ -1017,7 +1017,7 @@ implementation
expansion under linux } expansion under linux }
{$ifdef unix} {$ifdef unix}
begin begin
Linux.Shell(command); Unix.Shell(command);
end; end;
{$else} {$else}
var var
@ -1299,7 +1299,10 @@ begin
end. end.
{ {
$Log$ $Log$
Revision 1.24 2001-01-20 18:32:52 hajny Revision 1.25 2001-01-21 20:32:45 marco
* Renamefest. Compiler part. Not that hard.
Revision 1.24 2001/01/20 18:32:52 hajny
+ APPTYPE support under OS/2, app_fs, GetEnvPChar for OS/2 + APPTYPE support under OS/2, app_fs, GetEnvPChar for OS/2
Revision 1.23 2001/01/13 00:03:41 peter Revision 1.23 2001/01/13 00:03:41 peter

View File

@ -68,7 +68,7 @@ implementation
uses uses
{$ifdef Unix} {$ifdef Unix}
linux, Unix,
{$endif} {$endif}
globals,systems; globals,systems;
@ -237,7 +237,10 @@ end;
end. end.
{ {
$Log$ $Log$
Revision 1.5 2000-12-25 00:07:29 peter Revision 1.6 2001-01-21 20:32:45 marco
* Renamefest. Compiler part. Not that hard.
Revision 1.5 2000/12/25 00:07:29 peter
+ new tlinkedlist class (merge of old tstringqueue,tcontainer and + new tlinkedlist class (merge of old tstringqueue,tcontainer and
tlinkedlist objects) tlinkedlist objects)