me
/
guix
Archived
1
0
Fork 0

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
Trevor Arjeski 2024-05-27 18:22:33 +03:00 committed by Ludovic Courtès
parent 85f1bfac0b
commit 6d49d97454
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 1 additions and 2 deletions

View File

@ -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