texinfo: Require ncurses
(#35356)
I don't know if this is new in version 7.0, but to build `info`, which is a required executable at the end of the recipe, it is necessary to have a terminal library, otherwise you get ``` [...] checking for tgetent in -ltinfo... no checking for tgetent in -lncurses... no checking for tgetent in -lcurses... no checking for tgetent in -ltermlib... no checking for tgetent in -ltermcap... no checking for tgetent in -lterminfo... no configure: WARNING: info needs a terminal library, one of: tinfo ncurses curses termlib termcap terminfo [...] configure: WARNING: Could not find a terminal library among tinfo ncurses curses termlib termcap terminfo configure: WARNING: The programs from `info' directory will not be built. ``` then compilation runs, `info` is not built and installation fails according to Spack because the required executable is missing.
This commit is contained in:
parent
25cb55ccd9
commit
7fe2039b01
@ -34,6 +34,7 @@ class Texinfo(AutotoolsPackage, GNUMirrorPackage):
|
||||
version("5.0", sha256="2c579345a39a2a0bb4b8c28533f0b61356504a202da6a25d17d4d866af7f5803")
|
||||
|
||||
depends_on("perl")
|
||||
depends_on("ncurses")
|
||||
depends_on("gettext")
|
||||
|
||||
# sanity check
|
||||
|
Loading…
Reference in New Issue
Block a user