all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#61039] [PATCH core-updates 0/1] gnu: libdrm: Fix building on ARM architectures.
@ 2023-01-24 17:26 Simon South
  2023-01-24 17:28 ` [bug#61039] [PATCH core-updates 1/1] " Simon South
  2023-09-19 14:31 ` bug#61039: [PATCH core-updates 0/1] " Simon South
  0 siblings, 2 replies; 3+ messages in thread
From: Simon South @ 2023-01-24 17:26 UTC (permalink / raw)
  To: 61039

On core-updates, libdrm is failing to build on aarch64-linux with

  ../libdrm-2.4.114/meson.build:21:0: ERROR: Value "true" (of type
  "string") for combo option "Enable support for EXYNOS's experimental
  KMS API." is not one of the choices. Possible choices are (as
  string): "enabled", "disabled", "auto".

This is due to a recent change in libdrm[0] that changed the type, and
therefore the accepted values, of a number of build-configuration
options.  The patch to follow corrects this issue and allows libdrm to
build again.  (Note master and staging still provide an older version
of libdrm and are unaffected.)

Tested on x86-64 and AArch64 and everything appears fine.  On x86-64,
the same package output is produced with or without the patch applied.

[0] In upstream commit 26eb15165b:
    https://cgit.freedesktop.org/drm/libdrm/commit/?id=26eb15165b767de50bef3c02abd29cec256cf4a1

--
Simon South
simon@simonsouth.net


Simon South (1):
  gnu: libdrm: Fix building on ARM architectures.

 gnu/packages/xdisorg.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


base-commit: ca124b098dcc7ce7898df10faf9986f44a14e0a1
-- 
2.39.1





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

* [bug#61039] [PATCH core-updates 1/1] gnu: libdrm: Fix building on ARM architectures.
  2023-01-24 17:26 [bug#61039] [PATCH core-updates 0/1] gnu: libdrm: Fix building on ARM architectures Simon South
@ 2023-01-24 17:28 ` Simon South
  2023-09-19 14:31 ` bug#61039: [PATCH core-updates 0/1] " Simon South
  1 sibling, 0 replies; 3+ messages in thread
From: Simon South @ 2023-01-24 17:28 UTC (permalink / raw)
  To: 61039

* gnu/packages/xdisorg.scm (libdrm)[arguments]<#:configure-flags>: Update
option values to match current version of libdrm.
---
 gnu/packages/xdisorg.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 9b45d51637..8f5c42030c 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -706,10 +706,10 @@ (define-public libdrm
      (list #:configure-flags
            (match (%current-system)
              ((or "armhf-linux" "aarch64-linux")
-              #~(list "-Dexynos=true"
-                      "-Domap=true"
-                      "-Detnaviv=true"
-                      "-Dtegra=true"
+              #~(list "-Dexynos=enabled"
+                      "-Domap=enabled"
+                      "-Detnaviv=enabled"
+                      "-Dtegra=enabled"
                       "-Dfreedreno-kgsl=true"))
              (_ ''()))
            #:phases
-- 
2.39.1





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

* bug#61039: [PATCH core-updates 0/1] gnu: libdrm: Fix building on ARM architectures.
  2023-01-24 17:26 [bug#61039] [PATCH core-updates 0/1] gnu: libdrm: Fix building on ARM architectures Simon South
  2023-01-24 17:28 ` [bug#61039] [PATCH core-updates 1/1] " Simon South
@ 2023-09-19 14:31 ` Simon South
  1 sibling, 0 replies; 3+ messages in thread
From: Simon South @ 2023-09-19 14:31 UTC (permalink / raw)
  To: 61039-done

This issue was resolved with commit 62ff0b9086, "gnu: libdrm: Update
configure-flags."

-- 
Simon South
simon@simonsouth.net




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

end of thread, other threads:[~2023-09-19 14:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-24 17:26 [bug#61039] [PATCH core-updates 0/1] gnu: libdrm: Fix building on ARM architectures Simon South
2023-01-24 17:28 ` [bug#61039] [PATCH core-updates 1/1] " Simon South
2023-09-19 14:31 ` bug#61039: [PATCH core-updates 0/1] " Simon South

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.