mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 16:59:12 +02:00
+ Fixed bootstrap problem for resources
git-svn-id: trunk@1013 -
This commit is contained in:
parent
6af1b74202
commit
7184d30fc1
@ -1829,6 +1829,7 @@ begin
|
|||||||
def_system_macro('FPC_HAS_TYPE_EXTENDED');
|
def_system_macro('FPC_HAS_TYPE_EXTENDED');
|
||||||
def_system_macro('FPC_HAS_TYPE_DOUBLE');
|
def_system_macro('FPC_HAS_TYPE_DOUBLE');
|
||||||
def_system_macro('FPC_HAS_TYPE_SINGLE');
|
def_system_macro('FPC_HAS_TYPE_SINGLE');
|
||||||
|
def_system_macro('FPC_HAS_RESOURCES');
|
||||||
{$endif}
|
{$endif}
|
||||||
{$ifdef m68k}
|
{$ifdef m68k}
|
||||||
def_system_macro('CPU68K');
|
def_system_macro('CPU68K');
|
||||||
|
@ -41,7 +41,11 @@ type
|
|||||||
|
|
||||||
Var
|
Var
|
||||||
InitRes : Boolean = False;
|
InitRes : Boolean = False;
|
||||||
|
{$ifdef FPC_HAS_RESOURCES}
|
||||||
FPCResourceSectionLocation : pFPCResourceSectionTable; external name 'FPC_RESLOCATION';
|
FPCResourceSectionLocation : pFPCResourceSectionTable; external name 'FPC_RESLOCATION';
|
||||||
|
{$else}
|
||||||
|
FPCResourceSectionLocation : pFPCResourceSectionTable = Nil;
|
||||||
|
{$endif}
|
||||||
FPCRuntimeResourceInfoArray : PFPCRuntimeResourceInfo;
|
FPCRuntimeResourceInfoArray : PFPCRuntimeResourceInfo;
|
||||||
ResInfoCount : Cardinal;
|
ResInfoCount : Cardinal;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user