mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-21 13:52:35 +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;
|
apr_off_t = Int64;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
{$IFDEF UNIX}
|
{$IFDEF UNIX}
|
||||||
|
{$ifdef CPU64}
|
||||||
|
apr_off_t = int64;
|
||||||
|
{$else}
|
||||||
apr_off_t = Integer;
|
apr_off_t = Integer;
|
||||||
|
{$endif}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
apr_int32_t = Integer;
|
apr_int32_t = Integer;
|
||||||
|
Loading…
Reference in New Issue
Block a user