summaryrefslogtreecommitdiff
path: root/gnu/packages/patches
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-04-26 19:50:16 +0300
committerLudovic Courtès <ludo@gnu.org>2024-08-31 10:45:01 +0200
commit3be993d963c44d8d1bfe3cf77fa8a6b36866d64d (patch)
tree7a531ee151e04f9afb39335c3ad5eb250c9e011e /gnu/packages/patches
parent77192e834b81cc6622ce755fd7e515528d278dbc (diff)
gnu: datefudge: Update to 1.26.
* gnu/packages/time.scm (datefudge): Update to 1.26. [source]: Update source URIs. Remove patch. [arguments]: Adjust make-flags to allow cross-compiling and set the version string. Remove custom 'patch-makefile phase. * gnu/packages/patches/datefudge-gettimeofday.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it. Change-Id: I8b53f9a9c3eb900ce5bceaa864ed701fb3cd3dc4
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r--gnu/packages/patches/datefudge-gettimeofday.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/gnu/packages/patches/datefudge-gettimeofday.patch b/gnu/packages/patches/datefudge-gettimeofday.patch
deleted file mode 100644
index 11c7640869..0000000000
--- a/gnu/packages/patches/datefudge-gettimeofday.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-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);
- }