On 09/04/2019 18:07, Stefan Sperling wrote: > On Tue, Apr 09, 2019 at 05:52:30PM +0200, Stefan Sperling wrote: >> You are right, this looks like a problem in Subversion's configure script. >> It assumes that APR uses "d", "ld" or "lld" for this format string which >> is now a wrong assumption. > > Pierre, could you please try this patch against Subversion and let > me know if it helps? >
Hi Stefan, Thanks for the fast answer. I tried the patch, and it still does not work. The problem is that the PRId64 macro is "l" "d" on my machine (from /usr/include/inttypes installed by glibc-2.29), not "ld". Actually, this may be of some use: gcc version: 8.3.0 glibc version: 2.29 Well, checking on other machines (debian unstable: glibc-2.28, debian 9: glibc-2.24), PRI64d always return "l" "d". Pierre