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 3c65631652 gnu: arcan-sdl: Fix build.
3c65631652 is described below

commit 3c65631652d231749108715c9a21f896132a49e6
Author: Remco van 't Veer <[email protected]>
AuthorDate: Wed Aug 20 22:40:22 2025 +0200

    gnu: arcan-sdl: Fix build.
    
    * gnu/packages/arcan.scm (arcan-sdl)[arguments]: Remove
    "CMAKE_C_FLAGS=-fcommon" from configure-flags.
    
    Change-Id: Id3794d5c72b6945b8cbc0abf6a616c084c7741bf
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/arcan.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/arcan.scm b/gnu/packages/arcan.scm
index 49b5d04990..c38c70d51d 100644
--- a/gnu/packages/arcan.scm
+++ b/gnu/packages/arcan.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2019 L  p R n  d n <[email protected]>
 ;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]>
 ;;; Copyright © 2023, 2024 Ahmad Draidi <[email protected]>
+;;; Copyright © 2025 Remco van 't Veer <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -176,14 +177,13 @@ engine with a Lua scripting interface.")
        (delete "libdrm")
        (prepend glu libglvnd mesa sdl2)))
     (arguments
-     `(,@(ensure-keyword-arguments
-          (package-arguments arcan)
-          '(#:configure-flags
-            '("-DCMAKE_C_FLAGS=-fcommon"
-              "-DHYBRID_SDL=on" "-DBUILTIN_LUA=off"
-              "-DSTATIC_OPENAL=off" "-DDISABLE_JIT=off"
-              "-DENABLE_LWA=on" "-DSTATIC_SQLITE3=off"
-              "-DSTATIC_FREETYPE=off" "-DSHMIF_TUI_ACCEL=on")))))
+     (ensure-keyword-arguments
+      (package-arguments arcan)
+      '(#:configure-flags
+        '("-DHYBRID_SDL=on" "-DBUILTIN_LUA=off"
+          "-DSTATIC_OPENAL=off" "-DDISABLE_JIT=off"
+          "-DENABLE_LWA=on" "-DSTATIC_SQLITE3=off"
+          "-DSTATIC_FREETYPE=off" "-DSHMIF_TUI_ACCEL=on"))))
     (synopsis "Combined display server, multimedia framework and game engine 
(SDL)")))
 
 (define-public durden

Reply via email to