我正在尝试通过 Homebrew 在 Mac(El Capitan)上安装支持 ECMAScript 的 elinks。
为了确保一切都能正确编译,我首先自己手动将包下载./configure
到make
. 在我设置以下环境变量之前,它无法识别我的 SpiderMonkey 安装:
export PKG_CONFIG=pkg-config
export PKG_CONFIG_PATH=/usr/local/Cellar/nspr/4.12/lib/pkgconfig:/usr/local/Cellar/spidermonkey/1.8.5_1/lib/pkgconfig
在这一点上,手动配置正在顺利进行。相关地,
checking pkg-config is at least version 0.9.0... yes
...
checking for SpiderMonkey (1.8.5 or later) in pkg-config mozjs185... yes
但是当我去时brew install --devel -v elinks
,我得到以下输出:
checking pkg-config is at least version 0.9.0... ./configure: line 4211: pkg-config: command not found
no
...
checking for SpiderMonkey (1.8.5 or later) in pkg-config mozjs185... no
是什么赋予了?
(我不确定这是否相关,但我做了一些调整brew edit elinks
以让它下载最新的实验版本,0.13 - 0.12pre6 是可用的。)