Add the 'restrict' qualifier to match the 'gettimeofday' declaration found in glibc 2.31. --- datefudge-1.23/datefudge.c 2020-02-17 22:35:21.343341725 +0100 +++ datefudge-1.23/datefudge.c 2020-02-17 22:35:49.619117874 +0100 @@ -78,6 +78,6 @@ return 0; } -int gettimeofday(struct timeval *x, struct timezone *y) { +int gettimeofday(struct timeval *restrict x, void *restrict y) { return __gettimeofday(x,y); } it'>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/hurd-add-without-rump-configure-option.patch
AgeCommit message (Expand)Author
2023-03-30gnu: hurd: Update to 3ff7053....* gnu/packages/hurd.scm (hurd-headers): Do it. Also backport some patches to make it build, and remove older patches. Also stop pretending we're on i586-pc-gnu. (hurd): Remove unneeded patches. * gnu/packages/patches/hurd-add-without-rump-configure-option.patch: * gnu/packages/patches/hurd-fix-types-of-read-write-and-readables-methods-2.patch: * gnu/packages/patches/hurd-fix-types-of-read-write-and-readables-methods.patch: New files. * gnu/packages/patches/hurd-cross.patch: * gnu/packages/patches/hurd-xattr.patch: Delete files. * gnu/local.mk (dist_patch_DATA): Register and unregister them. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Josselin Poiret