[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: guile-ncurses: Fix configure flags for Unicode support.
From: |
guix-commits |
Subject: |
03/09: gnu: guile-ncurses: Fix configure flags for Unicode support. |
Date: |
Wed, 10 Jul 2024 10:13:29 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 6d49d9745478fb68df108af64f9a8c2666151d30
Author: Trevor Arjeski <tmarjeski@gmail.com>
AuthorDate: Mon May 27 18:22:33 2024 +0300
gnu: guile-ncurses: Fix configure flags for Unicode support.
The flag "--with-ncursesw" doesn't seem to exist for guile-ncurses, and it
seemed to cause the build to not include unicode support. Building without
it
produces the expected "with ncursesw" support.
This can be checked within the guile REPL using:
> ,use (ncurses curses)
> %wide-ncurses
> #t ; has unicode and wide char support
* gnu/packages/guile-xyz.scm (guile-ncurses)[arguments]: Remove
‘--with-ncursesw’ from #:configure-flags.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I081ce7b21df49652040017f10de5d5f98fe076d5
---
gnu/packages/guile-xyz.scm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 5ef51e27a9..3ce4f6a8d6 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -2718,8 +2718,7 @@ many readers as needed).")
(guix build utils))
#:imported-modules ((guix build guile-build-system)
,@%gnu-build-system-modules)
- #:configure-flags (list "--with-ncursesw" ; Unicode support
- "--with-gnu-filesystem-hierarchy")
+ #:configure-flags (list "--with-gnu-filesystem-hierarchy")
#:phases
(modify-phases %standard-phases
(add-before 'build 'fix-libguile-ncurses-file-name
- branch master updated (71694363f6 -> ab54f8c514), guix-commits, 2024/07/10
- 02/09: gnu: llama-cpp: Update commit and configure flags for shared library build., guix-commits, 2024/07/10
- 03/09: gnu: guile-ncurses: Fix configure flags for Unicode support.,
guix-commits <=
- 04/09: gnu: gnucash: Update to 5.8., guix-commits, 2024/07/10
- 05/09: pack: Create /tmp in Apptainer images., guix-commits, 2024/07/10
- 09/09: gnu: xaos: Update to 4.3.2., guix-commits, 2024/07/10
- 06/09: gnu: Add emacs-casual-avy., guix-commits, 2024/07/10
- 01/09: gnu: cuirass: Update to 0eaf7b6., guix-commits, 2024/07/10
- 08/09: services: web: Return success from nginx-action., guix-commits, 2024/07/10
- 07/09: services: web: Pass run-directory to nginx's actions., guix-commits, 2024/07/10