mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 08:59:26 +02:00
* Fixed size of apr_off_t for 64-bit systems
git-svn-id: trunk@7029 -
This commit is contained in:
parent
3c10213ddd
commit
ee4e71fdd3
4
packages/base/httpd/httpd-2.0/apr/apr.pas
vendored
4
packages/base/httpd/httpd-2.0/apr/apr.pas
vendored
@ -102,7 +102,11 @@ type
|
||||
apr_off_t = Int64;
|
||||
{$ENDIF}
|
||||
{$IFDEF UNIX}
|
||||
{$ifdef CPU64}
|
||||
apr_off_t = int64;
|
||||
{$else}
|
||||
apr_off_t = Integer;
|
||||
{$endif}
|
||||
{$ENDIF}
|
||||
|
||||
apr_int32_t = Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user