mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 04:09:33 +02:00
renamed script unit to cscript to avoid namespace conflict with univint package on Darwin. this makes it possible to build the textmode IDE on Darwin
git-svn-id: trunk@37598 -
This commit is contained in:
parent
bfb89bfd0f
commit
e6aed467b5
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -159,6 +159,7 @@ compiler/constexp.pas svneol=native#text/x-pascal
|
||||
compiler/cpid.pas svneol=native#text/plain
|
||||
compiler/crefs.pas svneol=native#text/plain
|
||||
compiler/cresstr.pas svneol=native#text/plain
|
||||
compiler/cscript.pas svneol=native#text/plain
|
||||
compiler/cstreams.pas svneol=native#text/plain
|
||||
compiler/cutils.pas svneol=native#text/plain
|
||||
compiler/cwindirs.pp svneol=native#text/plain
|
||||
@ -659,7 +660,6 @@ compiler/rgbase.pas svneol=native#text/plain
|
||||
compiler/rgobj.pas svneol=native#text/plain
|
||||
compiler/scandir.pas svneol=native#text/plain
|
||||
compiler/scanner.pas svneol=native#text/plain
|
||||
compiler/script.pas svneol=native#text/plain
|
||||
compiler/sparc/aoptcpud.pas svneol=native#text/plain
|
||||
compiler/sparc/cgcpu.pas svneol=native#text/pascal
|
||||
compiler/sparc/cpuelf.pas svneol=native#text/plain
|
||||
|
@ -256,7 +256,7 @@ Implementation
|
||||
sfpux80,
|
||||
{$endif}
|
||||
{$endif}
|
||||
script,fmodule,verbose,
|
||||
cscript,fmodule,verbose,
|
||||
cpuinfo,
|
||||
aasmcpu;
|
||||
|
||||
|
@ -26,7 +26,7 @@ unit comprsrc;
|
||||
interface
|
||||
|
||||
uses
|
||||
Systems, cstreams, Script;
|
||||
Systems, cstreams, cscript;
|
||||
|
||||
type
|
||||
tresoutput = (roRES, roOBJ);
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
****************************************************************************
|
||||
}
|
||||
unit script;
|
||||
unit cscript;
|
||||
|
||||
{$i fpcdefs.inc}
|
||||
|
@ -103,7 +103,7 @@ implementation
|
||||
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,script,
|
||||
cutils,cfileutl,cscript,
|
||||
fmodule,finput,verbose,
|
||||
symtype,symcpu,symtable,jvmdef,
|
||||
itcpujas,cpubase,cpuinfo,cgutils,
|
||||
|
@ -160,7 +160,7 @@ Implementation
|
||||
{$ifdef hasUnix}
|
||||
baseunix,
|
||||
{$endif hasUnix}
|
||||
script,globals,verbose,comphook,ppu,fpccrc,
|
||||
cscript,globals,verbose,comphook,ppu,fpccrc,
|
||||
aasmbase,aasmcpu,
|
||||
ogmap;
|
||||
|
||||
|
@ -47,7 +47,7 @@ unit ag68kvasm;
|
||||
uses
|
||||
cutils,cfileutl,globals,verbose,
|
||||
cgbase,
|
||||
script,
|
||||
cscript,
|
||||
itcpugas,cpuinfo,
|
||||
aasmcpu;
|
||||
|
||||
|
@ -45,7 +45,7 @@ implementation
|
||||
symbase,symtable,symdef,
|
||||
finput,fmodule,fppu,
|
||||
aasmdata,
|
||||
script,gendef,
|
||||
cscript,gendef,
|
||||
comphook,
|
||||
scanner,scandir,
|
||||
pbase,psystem,pmodules,psub,ncgrtti,
|
||||
|
@ -57,7 +57,7 @@ interface
|
||||
|
||||
uses
|
||||
cutils,globtype,systems,cclasses,
|
||||
verbose,finput,fmodule,script,cpuinfo,
|
||||
verbose,finput,fmodule,cscript,cpuinfo,
|
||||
cgbase,cgutils,
|
||||
itcpugas
|
||||
;
|
||||
|
@ -48,7 +48,7 @@ unit agppcvasm;
|
||||
uses
|
||||
cutils,cfileutl,globals,verbose,
|
||||
cgbase,
|
||||
script,
|
||||
cscript,
|
||||
itcpugas,cpuinfo,
|
||||
aasmcpu;
|
||||
|
||||
|
@ -58,7 +58,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globtype,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,
|
||||
aasmbase,aasmtai,aasmcpu,cpubase,
|
||||
cgbase,cgobj,cgutils,ogbase,ncgutil,
|
||||
|
@ -53,7 +53,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,aasmbase,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_amiga;
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_amiga;
|
||||
|
||||
|
||||
|
||||
|
@ -71,7 +71,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,
|
||||
aasmbase,aasmtai,aasmcpu,cpubase,hlcgcpu,hlcgobj,
|
||||
cgbase,cgobj,cgutils,ogbase,ncgutil,
|
||||
|
@ -55,7 +55,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,aasmbase,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_aros;
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_aros;
|
||||
|
||||
|
||||
procedure timportlibaros.generatelib;
|
||||
|
@ -49,7 +49,7 @@ implementation
|
||||
|
||||
uses
|
||||
sysutils,cutils,cfileutl,cclasses,aasmbase,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_atari;
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_atari;
|
||||
|
||||
|
||||
constructor TLinkerAtari.Create;
|
||||
|
@ -59,7 +59,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globtype,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,aasmbase,aasmtai,aasmdata,aasmcpu,cpubase,i_beos,ogbase;
|
||||
|
||||
{*****************************************************************************
|
||||
|
@ -34,7 +34,7 @@ implementation
|
||||
sysutils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globtype,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,aasmbase,aasmtai,aasmdata,aasmcpu,cpubase,symsym,symdef,
|
||||
import,export,link,comprsrc,rescmn,i_bsd,expunix,
|
||||
cgutils,cgbase,cgobj,cpuinfo,ogbase;
|
||||
|
@ -32,7 +32,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,comphook,script,fmodule,i_embed,link,
|
||||
globtype,globals,systems,verbose,comphook,cscript,fmodule,i_embed,link,
|
||||
cpuinfo;
|
||||
|
||||
type
|
||||
|
@ -40,7 +40,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,comphook,systems,symconst,symsym,symdef,
|
||||
globals,verbose,fmodule,script,ogbase,
|
||||
globals,verbose,fmodule,cscript,ogbase,
|
||||
comprsrc,import,link,i_emx,ppu;
|
||||
|
||||
type
|
||||
|
@ -33,7 +33,7 @@ implementation
|
||||
aasmbase,
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_gba,link;
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_gba,link;
|
||||
|
||||
type
|
||||
TlinkerGBA=class(texternallinker)
|
||||
|
@ -32,7 +32,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,
|
||||
globtype,globals,systems,verbose,cscript,
|
||||
fmodule,i_go32v2,
|
||||
link,ogcoff,owar,aasmbase;
|
||||
|
||||
|
@ -60,7 +60,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globtype,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,aasmbase,aasmtai,aasmdata,aasmcpu,cpubase,i_haiku,ogbase;
|
||||
|
||||
{*****************************************************************************
|
||||
|
@ -33,7 +33,7 @@ implementation
|
||||
sysutils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globtype,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,aasmbase,aasmtai,aasmdata,aasmcpu,cpubase,symsym,symdef,
|
||||
import,export,link,comprsrc,rescmn,i_jvm,
|
||||
cgutils,cgbase,cgobj,cpuinfo,ogbase;
|
||||
|
@ -77,7 +77,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globtype,globals,
|
||||
script,
|
||||
cscript,
|
||||
fmodule,
|
||||
aasmbase,aasmtai,aasmcpu,cpubase,
|
||||
cgbase,ogbase,
|
||||
|
@ -47,7 +47,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_macos,
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_macos,
|
||||
ogbase,
|
||||
symconst;
|
||||
|
||||
|
@ -32,7 +32,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,rescmn,comprsrc,aasmbase,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_morph,link;
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_morph,link;
|
||||
|
||||
type
|
||||
PlinkerMorphOS=^TlinkerMorphOS;
|
||||
|
@ -34,7 +34,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,
|
||||
globtype,globals,systems,verbose,cscript,
|
||||
fmodule,i_msdos,
|
||||
link,aasmbase,cpuinfo,
|
||||
omfbase,ogbase,ogomf,owomflib;
|
||||
|
@ -33,7 +33,7 @@ implementation
|
||||
aasmbase,
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_nds,link;
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_nds,link;
|
||||
|
||||
type
|
||||
TlinkerNDS=class(texternallinker)
|
||||
|
@ -101,7 +101,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,
|
||||
verbose,systems,globtype,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,aasmbase,aasmtai,aasmdata,aasmcpu,cpubase,symsym,symdef,
|
||||
import,export,link,i_nwl,ogbase
|
||||
{$ifdef netware} ,dos {$endif}
|
||||
|
@ -95,7 +95,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,
|
||||
verbose,systems,globtype,globals,
|
||||
symconst,script,
|
||||
symconst,cscript,
|
||||
fmodule,aasmbase,aasmtai,aasmdata,aasmcpu,cpubase,symsym,symdef,
|
||||
import,export,link,i_nwm,ogbase, ogcoff, ognlm, owar, cclasses
|
||||
{$ifdef netware} ,dos {$endif}
|
||||
|
@ -40,7 +40,7 @@ implementation
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,systems,symconst,symdef,
|
||||
globals,verbose,fmodule,script,
|
||||
globals,verbose,fmodule,cscript,
|
||||
import,link,i_os2,ogbase;
|
||||
|
||||
type
|
||||
|
@ -46,7 +46,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_palmos,
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_palmos,
|
||||
comprsrc;
|
||||
|
||||
{****************************************************************************
|
||||
|
@ -37,7 +37,7 @@ implementation
|
||||
sysutils,
|
||||
cutils,cfileutl,cclasses,
|
||||
verbose,systems,globtype,globals,
|
||||
script,
|
||||
cscript,
|
||||
fmodule,
|
||||
import,export,expunix,link,comprsrc,rescmn,i_sunos,ogbase;
|
||||
|
||||
|
@ -30,7 +30,7 @@ interface
|
||||
cutils,cclasses,
|
||||
aasmbase,aasmtai,aasmdata,aasmcpu,fmodule,globtype,globals,systems,verbose,
|
||||
symconst,symdef,symsym,
|
||||
script,gendef,
|
||||
cscript,gendef,
|
||||
cpubase,
|
||||
import,export,link,cgobj, i_symbian;
|
||||
|
||||
|
@ -33,7 +33,7 @@ implementation
|
||||
link,
|
||||
SysUtils,
|
||||
cclasses,cutils,cfileutl,globtype,globals,
|
||||
systems,verbose,script,fmodule,i_watcom;
|
||||
systems,verbose,cscript,fmodule,i_watcom;
|
||||
|
||||
|
||||
type
|
||||
|
@ -33,7 +33,7 @@ implementation
|
||||
aasmbase,
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,fmodule,i_wii,link;
|
||||
globtype,globals,systems,verbose,cscript,fmodule,i_wii,link;
|
||||
|
||||
type
|
||||
TlinkerWii=class(texternallinker)
|
||||
|
@ -29,7 +29,7 @@ interface
|
||||
cutils,cclasses,
|
||||
aasmbase,aasmtai,aasmdata,aasmcpu,fmodule,globtype,globals,systems,verbose,
|
||||
symconst,symdef,symsym,
|
||||
script,gendef,
|
||||
cscript,gendef,
|
||||
cpubase,
|
||||
import,export,link,comprsrc,i_win;
|
||||
|
||||
|
@ -32,7 +32,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,cfileutl,cclasses,
|
||||
globtype,globals,systems,verbose,script,
|
||||
globtype,globals,systems,verbose,cscript,
|
||||
import,export,fmodule,i_win16,
|
||||
link,aasmbase,cpuinfo,
|
||||
omfbase,ogbase,ogomf,owbase,owomflib,
|
||||
|
@ -55,7 +55,7 @@ implementation
|
||||
uses
|
||||
SysUtils,
|
||||
cutils,globtype,globals,systems,cclasses,
|
||||
verbose,script,cpuinfo,
|
||||
verbose,cscript,cpuinfo,
|
||||
itx86int,
|
||||
cgbase
|
||||
{$ifdef EXTDEBUG}
|
||||
|
Loading…
Reference in New Issue
Block a user