Explorar o código

* Fixed size of apr_off_t for 64-bit systems

git-svn-id: trunk@7025 -
michael %!s(int64=18) %!d(string=hai) anos
pai
achega
678823cd22
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      packages/base/httpd/httpd-2.2/apr/apr.pas

+ 4 - 0
packages/base/httpd/httpd-2.2/apr/apr.pas

@@ -101,7 +101,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;