User Details
- User Since
- Jul 17 2019, 10:09 PM (293 w, 5 d)
- Availability
- Available
Sun, Feb 9
Removed extraneous space.
Added pkg-config modules for all previously manually linked libraries, which seems to be required for dynamic builds.
Thu, Feb 6
Jun 30 2024
Can this be accepted? Since GPGME is doing a direct syscall, rather than going through the libc wrapper, there's no need for it to use libc-specific types. It makes more sense (and is more portable) to use the sized types equivalent to the definition that the kernel uses.
May 10 2024
Ah, I see what's up with the man page. It's documenting the Glibc getdents64() wrapper interface, so that's why it uses the Glibc types. But gpgme isn't using that wrapper, it's doing the syscall directly, so it should use the types the kernel uses, which as you've noticed are just generic unsigned and signed 64-bit integers, matching what my patch does.
May 8 2024
May 6 2024
off64_t mat not the same as int64_t