diff --git a/compiler/systems/t_beos.pas b/compiler/systems/t_beos.pas index e1226a55cb..c2a1ddb2ca 100644 --- a/compiler/systems/t_beos.pas +++ b/compiler/systems/t_beos.pas @@ -382,8 +382,8 @@ end; function TLinkerBeOS.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; DynLinkStr : string[60]; StaticStr, @@ -433,8 +433,8 @@ end; Function TLinkerBeOS.MakeSharedLibrary:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; DynLinkStr : string[60]; StaticStr, @@ -505,8 +505,8 @@ initialization end. { $Log$ - Revision 1.11 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.12 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.10 2004/06/20 08:55:32 florian * logs truncated diff --git a/compiler/systems/t_bsd.pas b/compiler/systems/t_bsd.pas index 12e6433b52..852d7b442e 100644 --- a/compiler/systems/t_bsd.pas +++ b/compiler/systems/t_bsd.pas @@ -490,8 +490,8 @@ end; function TLinkerBSD.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; DynLinkStr : string[60]; StaticStr, @@ -547,8 +547,8 @@ end; Function TLinkerBSD.MakeSharedLibrary:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; begin MakeSharedLibrary:=false; @@ -627,8 +627,8 @@ initialization end. { $Log$ - Revision 1.20 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.21 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.19 2004/06/20 08:55:32 florian * logs truncated diff --git a/compiler/systems/t_emx.pas b/compiler/systems/t_emx.pas index 9bb4511261..7be2678428 100644 --- a/compiler/systems/t_emx.pas +++ b/compiler/systems/t_emx.pas @@ -436,8 +436,8 @@ end; function TLinkerEMX.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; i : longint; AppTypeStr, @@ -518,8 +518,8 @@ initialization end. { $Log$ - Revision 1.6 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.7 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.5 2004/09/08 11:23:31 michael + Check if outputdir exists, Fix exitcode when displaying help pages diff --git a/compiler/systems/t_go32v2.pas b/compiler/systems/t_go32v2.pas index 5ea2495134..3ff68e2113 100644 --- a/compiler/systems/t_go32v2.pas +++ b/compiler/systems/t_go32v2.pas @@ -211,8 +211,8 @@ end; function TLinkerGo32v2.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; StripStr : string[40]; begin @@ -362,8 +362,8 @@ initialization end. { $Log$ - Revision 1.5 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.6 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.4 2004/06/20 08:55:32 florian * logs truncated diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index cfc737919e..d777d87a4a 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -425,8 +425,8 @@ end; function TLinkerLinux.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; DynLinkStr : string[60]; StaticStr, @@ -479,8 +479,8 @@ var InitStr, FiniStr, SoNameStr : string[80]; - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; begin MakeSharedLibrary:=false; @@ -572,8 +572,8 @@ end. { $Log$ - Revision 1.22 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.23 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.21 2004/09/21 17:25:13 peter * paraloc branch merged diff --git a/compiler/systems/t_nwl.pas b/compiler/systems/t_nwl.pas index 3d051f7d4e..3a4583feea 100644 --- a/compiler/systems/t_nwl.pas +++ b/compiler/systems/t_nwl.pas @@ -547,8 +547,8 @@ Const function TLinkerNetwlibc.MakeNetwareLoadableModule (isLib : boolean):boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr, xdcname : string; success : boolean; StripStr : string[2]; @@ -651,8 +651,8 @@ initialization end. { $Log$ - Revision 1.4 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.5 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.3 2004/09/19 18:10:32 armin * added library support diff --git a/compiler/systems/t_nwm.pas b/compiler/systems/t_nwm.pas index ed20abbcbc..83becc5c67 100644 --- a/compiler/systems/t_nwm.pas +++ b/compiler/systems/t_nwm.pas @@ -515,8 +515,8 @@ end; function TLinkerNetware.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; StripStr : string[2]; begin @@ -580,8 +580,8 @@ initialization end. { $Log$ - Revision 1.15 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.16 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.14 2004/08/30 11:17:34 armin * added support for libc diff --git a/compiler/systems/t_os2.pas b/compiler/systems/t_os2.pas index e4ebd3959d..97f1ad7b8f 100644 --- a/compiler/systems/t_os2.pas +++ b/compiler/systems/t_os2.pas @@ -436,8 +436,8 @@ end; function TLinkeros2.MakeExecutable:boolean; var - binstr: String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; i : longint; AppTypeStr, @@ -518,8 +518,8 @@ initialization end. { $Log$ - Revision 1.10 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.11 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.9 2004/09/08 11:23:31 michael + Check if outputdir exists, Fix exitcode when displaying help pages diff --git a/compiler/systems/t_sunos.pas b/compiler/systems/t_sunos.pas index c0d486a026..5daae3f8fc 100644 --- a/compiler/systems/t_sunos.pas +++ b/compiler/systems/t_sunos.pas @@ -396,8 +396,8 @@ end; function TLinkersunos.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; DynLinkStr : string[60]; StaticStr, @@ -442,8 +442,8 @@ end; Function TLinkersunos.MakeSharedLibrary:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; begin MakeSharedLibrary:=false; @@ -489,8 +489,8 @@ initialization end. { $Log$ - Revision 1.9 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.10 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.8 2004/06/20 08:55:32 florian * logs truncated diff --git a/compiler/systems/t_watcom.pas b/compiler/systems/t_watcom.pas index 1bf1267305..a9836136ef 100644 --- a/compiler/systems/t_watcom.pas +++ b/compiler/systems/t_watcom.pas @@ -133,8 +133,8 @@ end; function TLinkerWatcom.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; StripStr : string[40]; begin @@ -179,8 +179,8 @@ initialization end. { $Log$ - Revision 1.5 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.6 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.4 2004/06/20 08:55:32 florian * logs truncated diff --git a/compiler/systems/t_win32.pas b/compiler/systems/t_win32.pas index 6cf94c9d7f..bed02fc2de 100644 --- a/compiler/systems/t_win32.pas +++ b/compiler/systems/t_win32.pas @@ -1014,8 +1014,8 @@ end; function TLinkerWin32.MakeExecutable:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; cmds,i : longint; AsBinStr : string[80]; @@ -1096,8 +1096,8 @@ end; Function TLinkerWin32.MakeSharedLibrary:boolean; var - binstr : String; - cmdstr : AnsiString; + binstr, + cmdstr : string; success : boolean; cmds, i : longint; @@ -1659,8 +1659,8 @@ initialization end. { $Log$ - Revision 1.36 2004-09-22 15:14:37 mazen - * use SysUtils unit instead of Dos Unit + Revision 1.37 2004-09-22 15:25:14 mazen + * Fix error committing : previous version must be in branch USE_SYSUTILS Revision 1.35 2004/06/20 08:55:32 florian * logs truncated