This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 7a145d9f3c gnu: wol: Fix build with GCC 14.
7a145d9f3c is described below

commit 7a145d9f3c459d43606cff5115ed1a3ef9ee6c20
Author: Ashish SHUKLA <ashish...@lostca.se>
AuthorDate: Sun Jul 20 15:11:45 2025 +0200

    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 <sharlata...@gmail.com>
---
 gnu/packages/networking.scm | 4 ++++
 1 file changed, 4 insertions(+)

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

Reply via email to