从源代码构建 ncurses 时如何为 terminfo 数据库设置自定义搜索路径
从源代码构建 ncurses 时,如何为 terminfo 数据库设置自定义搜索路径?
更具体地说,如何强制在“~/.terminfo”中搜索主目录?
How do I set custom search paths for the terminfo database when building ncurses from source?
To be more specific, how do I force the primary directory to be searched in '~/.terminfo'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
configure
中定义--datadir
标志,例如:阅读位于 ncurses 文件根目录中的 INSTALL 文件中的注释:
Define the
--datadir
flag inconfigure
, like:Read the notes in INSTALL file located in the root of ncurses files:
来自 terminfo 手册页:
您可能需要查阅联机帮助页以获取有关如何编译 terminfo 文件的信息。
我希望这有帮助。
From the terminfo manpage:
You may need to consult the manpage for information on how to compile the terminfo file.
I hope this helps.