Hello,

Here is a small patch for the apr library. I believe that the more
I'll continue binding the svn library, i will have more patches to
give.

Ido
-- 
http://ik.homelinux.org/
Index: packages/httpd22/src/apr/apr.pas
===================================================================
--- packages/httpd22/src/apr/apr.pas	(revision 10459)
+++ packages/httpd22/src/apr/apr.pas	(working copy)
@@ -190,6 +190,7 @@
 {$include apr_lib.inc}
 {$include apr_signal.inc}
 {$include apr_network_io.inc}
+{$include apr_hash.inc}
 {.$include apr_portable.inc}
 
 {.$include ../aprutils/apr_uri.inc}
Index: packages/httpd22/src/apr/apr_time.inc
===================================================================
--- packages/httpd22/src/apr/apr_time.inc	(revision 10459)
+++ packages/httpd22/src/apr/apr_time.inc	(working copy)
@@ -43,8 +43,11 @@
 { mechanism to properly type apr_time_t literals }
 //#define APR_TIME_C(val) APR_INT64_C(val)
 
+const
+  APR_INT64_T_FMT = '1d';
+
 { mechanism to properly print apr_time_t values }
-//  APR_TIME_T_FMT = APR_INT64_T_FMT;
+  APR_TIME_T_FMT = APR_INT64_T_FMT;
 
 { intervals for I/O timeouts, in microseconds }
   apr_interval_time_t = apr_int64_t;
_______________________________________________
fpc-devel maillist  -  [email protected]
http://lists.freepascal.org/mailman/listinfo/fpc-devel

Reply via email to