all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#59395] [PATCH] gnu: chipmunk: Fix build.
@ 2022-11-20  1:25 Adam Faiz via Guix-patches via
  2022-11-20  1:28 ` [bug#59395] [PATCH] gnu: chipmunk: Use gexps Adam Faiz via Guix-patches via
  2022-11-20  9:16 ` bug#59395: [PATCH] gnu: chipmunk: Fix build Efraim Flashner
  0 siblings, 2 replies; 3+ messages in thread
From: Adam Faiz via Guix-patches via @ 2022-11-20  1:25 UTC (permalink / raw)
  To: 59395

 From 365ca7ef3d98d3ce1cfff80defea5bbc4ebf5d62 Mon Sep 17 00:00:00 2001
From: AwesomeAdam54321 <adam.faiz@disroot.org>
Date: Sun, 20 Nov 2022 09:03:29 +0800
Subject: [PATCH] gnu: chipmunk: Fix build.

* gnu/packages/game-development.scm (chipmunk): Don't include
the <sys/sysctl.h> header. It has been removed in glibc since 2.32.
---
  gnu/packages/game-development.scm | 9 ++++++++-
  1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 90205a89ab..b319f2fef3 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -2444,7 +2444,14 @@ (define-public chipmunk
               (commit (string-append "Chipmunk-" version))))
         (file-name (git-file-name name version))
         (sha256
-        (base32 "1qmkn01g06p3rnhmbyffmjns6wj5vhgf9cscigk3wzxcpwv1hyxb"))))
+        (base32 "1qmkn01g06p3rnhmbyffmjns6wj5vhgf9cscigk3wzxcpwv1hyxb"))
+       (modules '((guix build utils)))
+       (snippet
+        #~(begin
+            ;; This is fixed in the upstream repository but the fix
+            ;; has not been released.
+            (substitute* "src/cpHastySpace.c"
+              (("#include <sys/sysctl.h>") ""))))))
      (build-system cmake-build-system)
      (arguments
       `(#:tests? #f                      ;no test
-- 
2.38.1




^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-11-20  9:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-20  1:25 [bug#59395] [PATCH] gnu: chipmunk: Fix build Adam Faiz via Guix-patches via
2022-11-20  1:28 ` [bug#59395] [PATCH] gnu: chipmunk: Use gexps Adam Faiz via Guix-patches via
2022-11-20  9:16 ` bug#59395: [PATCH] gnu: chipmunk: Fix build Efraim Flashner

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.