diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-21 00:25:52 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-22 00:42:19 +0900 |
commit | 788b0339d4e05e2b5ab67c60f2a1f81e446cf3f7 (patch) | |
tree | fe6d5decf149acaee87be2224eae0e6634fef7a5 /gnu/packages/networking.scm | |
parent | 7cd121433b79bf69ab0e7990ef3ccff1bebf6945 (diff) |
gnu: opendht: Fix build with GCC 14.
* gnu/packages/patches/opendht-nanosleep.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/networking.scm (opendht) [source]: Apply it.
Change-Id: I14589dba3a99ae51bb522ffdbe2a1390c74aa75a
Diffstat (limited to 'gnu/packages/networking.scm')
-rw-r--r-- | gnu/packages/networking.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index f6e72709a9..9dc4b24cd0 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -3961,7 +3961,8 @@ and targeted primarily for asynchronous processing of HTTP-requests.") (file-name (git-file-name name version)) (sha256 (base32 - "069y4mgygjsfp5szfbqr7l30g7fbcqqj62h11byyq9k24rl7ilsq")))) + "069y4mgygjsfp5szfbqr7l30g7fbcqqj62h11byyq9k24rl7ilsq")) + (patches (search-patches "opendht-nanosleep.patch")))) (outputs '("out" "python" "tools" "debug")) (build-system gnu-build-system) (arguments |