- removed all "islibrary:=false;" assignments from system unit

initialisation code, because that's a typed constant already initialised
    to that value and it interferes with a generic solution to set islibrary
    to true for libraries

git-svn-id: trunk@12376 -
This commit is contained in:
Jonas Maebe 2008-12-17 17:48:04 +00:00
parent 8445fb74bd
commit d4d7b695c7
10 changed files with 0 additions and 12 deletions

View File

@ -365,7 +365,6 @@ end;
begin
IsConsole := TRUE;
IsLibrary := FALSE;
SysResetFPU;
if not(IsLibrary) then
SysInitFPU;

View File

@ -350,7 +350,6 @@ var
s : string;
begin
IsConsole := TRUE;
IsLibrary := FALSE;
StackLength := CheckInitialStkLen(InitialStkLen);
StackBottom := Sptr - StackLength;

View File

@ -305,7 +305,6 @@ end;
Begin
IsConsole := TRUE;
IsLibrary := FALSE;
StackLength := CheckInitialStkLen(InitialStkLen);
StackBottom := Sptr - StackLength;
{ Set up signals handlers }

View File

@ -460,7 +460,6 @@ const
FatalHeap: array [0..33] of char = 'FATAL: Cannot initialize heap!!'#13#10'$';
begin
IsLibrary := FALSE;
{Determine the operating system we are running on.}
{$ASMMODE INTEL}
asm

View File

@ -350,7 +350,6 @@ var
s : string;
begin
IsConsole := TRUE;
IsLibrary := FALSE;
StackLength := CheckInitialStkLen(InitialStkLen);
StackBottom := Sptr - StackLength;

View File

@ -397,7 +397,6 @@ end;
begin
IsConsole := TRUE;
IsLibrary := FALSE;
StackLength := CheckInitialStkLen(InitialStkLen);
StackBottom := Sptr - StackLength;
SysResetFPU;

View File

@ -476,7 +476,6 @@ Begin
SysInitStdIO;
{Delphi Compatible}
IsLibrary := FALSE;
IsConsole := TRUE;
ExitCode := 0;
InitSystemThreads;

View File

@ -1086,8 +1086,6 @@ const
{* ST: pointer;}
{*}
begin
IsLibrary := FALSE;
{$IFDEF OS2EXCEPTIONS}
(* asm
{ allocate space for exception registration record }

View File

@ -218,7 +218,6 @@ end;
Begin
IsConsole := TRUE;
IsLibrary := FALSE;
StackLength := CheckInitialStkLen(InitialStkLen);
StackBottom := Sptr - StackLength;
{ Set up signals handlers }

View File

@ -182,8 +182,6 @@ function Pascal_E32Main: Integer; cdecl; [public, alias: '_Pascal_E32Main'];
var
ST : pointer;
begin
IsLibrary := false;
PascalMain;
{ if we pass here there was no error }