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

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2d06dfc050 gnu: emacs-wordgen: Fix build on 32-bit platforms.
2d06dfc050 is described below

commit 2d06dfc050114dba44e791d8decc8eaa705fee01
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon Apr 17 13:30:10 2023 +0200

    gnu: emacs-wordgen: Fix build on 32-bit platforms.
    
    * gnu/packages/emacs-xyz.scm (emacs-wordgen)[arguments]<#:emacs>: Use
    EMACS-WIDE-INT on 32-bit platforms.
---
 gnu/packages/emacs-xyz.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index cc827fb9d5..c1748e7f36 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -24411,6 +24411,12 @@ It replaces the standard completions buffer with Ido 
prompt.")
        (sha256
         (base32 "06vbc9ycz1nbjwjkg99y3lj6jwb6lnwnmkqf09yr00jjrrfhfash"))))
     (build-system emacs-build-system)
+    (arguments
+     (list
+      #:emacs (if (target-64bit?)
+                  emacs-minimal
+                  ;; Require wide-int support for 32-bit platform.
+                  emacs-wide-int)))
     (home-page "https://github.com/Fanael/wordgen.el";)
     (synopsis "Random word generator")
     (description "This package provides functions to generate random words

Reply via email to