RE: viewcvs not working anymore on windows with current version o f tr unk due to changes in apr.i
From: Marc Haesen <marc.haesen_at_telindus.com>
Date: 2004-02-25 08:38:03 CET
The problem is that the routine core.svn_time_from_ctring returns None
On windows APR_INT64_T_FMT is defined as "I64d"
#if APR_INT64_T_FMT == "lld"
%apply long long { apr_time_t };
%typemap(python,argout,fragment="t_output_helper") apr_time_t *
#elif APR_INT64_T_FMT = "ld"
%apply long { apr_time_t };
%typemap(python,argout,fragment="t_output_helper") apr_time_t *
#endif
to
#if APR_INT64_T_FMT == "lld"
%apply long long { apr_time_t };
%typemap(python,argout,fragment="t_output_helper") apr_time_t *
#elif APR_INT64_T_FMT == "ld"
%apply long { apr_time_t };
%typemap(python,argout,fragment="t_output_helper") apr_time_t *
#elif APR_INT64_T_FMT == "I64d"
%typemap(python,argout,fragment="t_output_helper") apr_time_t *
#endif
and recompile the binding, the function returns the time again.
Regards,
-----Original Message-----
On Tue, Feb 24, 2004 at 02:42:26PM +0100, Marc Haesen wrote:
How is it failing?
> The added #if ... #elif ... #endif should be changed.
How?
Some more specifics here would be helpful. I'd love to fix this but
-- Ben Reser <ben@reser.org> http://ben.reser.org "Conscience is the inner voice which warns us somebody may be looking." - H.L. Mencken --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org For additional commands, e-mail: dev-help@subversion.tigris.org Visit us at InfoSecurity - The Largest Security Fair in the world! 10 and 11 March - Brussels Kart Expo - Booth 1.B.050 Get your free tickets on www.telindus.be --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org For additional commands, e-mail: dev-help@subversion.tigris.orgReceived on Wed Feb 25 08:37:39 2004 |
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.