我想将一个软件(rtorrent)从源安装到我的主文件夹。它依赖于ncurses,但未安装。我已在配置步骤中使用该PREFIX
选项将 ncurses 安装到我的主文件夹中,但是当我尝试对 rtorrent 执行相同操作时,这似乎不起作用,因为它一直告诉我它需要 ncurses。
期间的最后几行输出make
:
checking if more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... no
checking for NcursesW wide-character library... no
checking for Ncurses library... no
checking for Curses library... no
configure: error: requires either NcursesW or Ncurses library
我怎样才能让它发挥作用?
答案1
大多数configure
脚本允许您指定它们使用的库的位置。
./configure ... --with-ncurses=some/path ...