mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:47:52 +02:00
+ call to initvariantmanager inserted
This commit is contained in:
parent
1dd159277c
commit
495cb55113
@ -1820,12 +1820,18 @@ begin
|
||||
argc:=GetParamCount(args);
|
||||
OrigDir := 0;
|
||||
FileList := nil;
|
||||
{$ifdef HASVARIANT}
|
||||
initvariantmanager;
|
||||
{$endif HASVARIANT}
|
||||
end.
|
||||
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.4 2002-09-07 16:01:16 peter
|
||||
Revision 1.5 2002-10-13 09:25:14 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.4 2002/09/07 16:01:16 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
}
|
||||
}
|
@ -752,12 +752,18 @@ begin
|
||||
InOutRes:=0;
|
||||
errno := 0;
|
||||
{ Setup command line arguments }
|
||||
argc:=GetParamCount(args);
|
||||
argc:=GetParamCount(args);
|
||||
{$ifdef HASVARIANT}
|
||||
initvariantmanager;
|
||||
{$endif HASVARIANT}
|
||||
end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.4 2002-09-07 16:01:16 peter
|
||||
Revision 1.5 2002-10-13 09:25:23 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.4 2002/09/07 16:01:16 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
}
|
||||
}
|
@ -519,10 +519,16 @@ begin
|
||||
|
||||
{ Reset IO Error }
|
||||
InOutRes:=0;
|
||||
{$ifdef HASVARIANT}
|
||||
initvariantmanager;
|
||||
{$endif HASVARIANT}
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.4 2002-09-07 16:01:17 peter
|
||||
Revision 1.5 2002-10-13 09:25:31 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.4 2002/09/07 16:01:17 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
}
|
||||
}
|
@ -81,14 +81,20 @@ Begin
|
||||
OpenStdIO(StdErr,fmOutput,StdErrorHandle);
|
||||
{ Reset IO Error }
|
||||
InOutRes:=0;
|
||||
{$ifdef HASVARIANT}
|
||||
initvariantmanager;
|
||||
{$endif HASVARIANT}
|
||||
End.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.2 2002-09-07 16:01:17 peter
|
||||
Revision 1.3 2002-10-13 09:25:39 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.2 2002/09/07 16:01:17 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
Revision 1.1 2002/08/19 12:29:11 marco
|
||||
* First working POSIX *BSD system unit.
|
||||
|
||||
}
|
||||
}
|
@ -1504,10 +1504,16 @@ Begin
|
||||
InitDPMIExcp;
|
||||
InstallDefaultHandlers;
|
||||
{$endif EXCEPTIONS_IN_SYSTEM}
|
||||
{$ifdef HASVARIANT}
|
||||
initvariantmanager;
|
||||
{$endif HASVARIANT}
|
||||
End.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.21 2002-09-07 21:32:08 carl
|
||||
Revision 1.22 2002-10-13 09:28:44 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.21 2002/09/07 21:32:08 carl
|
||||
- removed unused defines
|
||||
|
||||
Revision 1.20 2002/09/07 16:01:19 peter
|
||||
|
@ -783,10 +783,16 @@ Begin
|
||||
IsLibrary := FALSE;
|
||||
IsConsole := TRUE;
|
||||
ExitCode := 0;
|
||||
{$ifdef HASVARIANT}
|
||||
initvariantmanager;
|
||||
{$endif HASVARIANT}
|
||||
End.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.14 2002-09-07 16:01:21 peter
|
||||
Revision 1.15 2002-10-13 09:28:45 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.14 2002/09/07 16:01:21 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
Revision 1.13 2002/07/01 16:29:05 peter
|
||||
|
@ -1018,10 +1018,17 @@ begin
|
||||
|
||||
{ no I/O-Error }
|
||||
inoutres:=0;
|
||||
|
||||
{$ifdef HASVARIANT}
|
||||
initvariantmanager;
|
||||
{$endif HASVARIANT}
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.23 2002-09-07 16:01:25 peter
|
||||
Revision 1.24 2002-10-13 09:28:45 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.23 2002/09/07 16:01:25 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
Revision 1.22 2002/07/01 16:29:05 peter
|
||||
|
@ -975,7 +975,7 @@ procedure Exe_entry;[public, alias : '_FPC_EXE_Entry'];
|
||||
{ This strange construction is needed to solve the _SS problem
|
||||
with a smartlinked syswin32 (PFV) }
|
||||
asm
|
||||
{ allocate space for an excption frame }
|
||||
{ allocate space for an exception frame }
|
||||
pushl $0
|
||||
pushl %fs:(0)
|
||||
{ movl %esp,%fs:(0)
|
||||
@ -1573,7 +1573,10 @@ end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.32 2002-09-07 21:28:10 carl
|
||||
Revision 1.33 2002-10-13 09:28:45 florian
|
||||
+ call to initvariantmanager inserted
|
||||
|
||||
Revision 1.32 2002/09/07 21:28:10 carl
|
||||
- removed os_types
|
||||
* fix range check errors
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user