diff options
author | Ashish SHUKLA <ashish.is@lostca.se> | 2025-07-20 15:11:45 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-20 15:21:01 +0100 |
commit | 7a145d9f3c459d43606cff5115ed1a3ef9ee6c20 (patch) | |
tree | ffe1803858129604e09cdf6f20ac870fd1acd662 | |
parent | 0faafabef907387fb3a3f6c5c7840a59512531ef (diff) |
gnu: wol: Fix build with GCC 14.
Fixes guix/guix#1407
* gnu/packages/networking.scm (wol)[arguments]: Add configure-flags.
Change-Id: I356c2e5e8b5d0172adb94c3b161b7ade61ad1cc6
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/networking.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index d032377485..f6e72709a9 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4526,6 +4526,10 @@ simulation, and a number of other applications.") (sha256 (base32 "08i6l5lr14mh4n3qbmx6kyx7vjqvzdnh3j9yfvgjppqik2dnq270")))) (build-system gnu-build-system) + (arguments + ;; fix build with GCC 14 + '(#:configure-flags + (list "CFLAGS=-Wno-implicit-function-declaration"))) (home-page "https://sourceforge.net/projects/wake-on-lan/") (synopsis "Implements Wake On LAN functionality in a small program") (description "Tool to send a magic packet to wake another host on the |