jvcl: Fix compilation of customcontrols runtime package under Linux (https://forum.lazarus.freepascal.org/index.php/topic,62692.msg474247.html)

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8762 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2023-03-15 15:54:03 +00:00
parent 505a5d027f
commit aa1f6223c8

View File

@ -388,7 +388,7 @@ begin
FDFileAccessed := UnixToDateTime(info.st_atime);
FDFileChanged := UnixToDateTime(info.st_mtime);
FDFileCreated := UnixToDateTime(info.st_ctime);
{$IFDEF DARWIN}
{$IF DEFINED(LINUX) or DEFINED(DARWIN)}
FDFileSize := info.st_size;
{$ELSE}
FDFileSize := info.Size;