*** info [lib/liblow.c(458)]:
Warning: closing connection
Segmentation fault
google了一番没有结果。
于是下载源码编译。configure出错,说找不到gc.h,看了说明,原来要先安装GC库(Garbage Collector ),我把GC库装在用户目录下:
./configure --prefix=/home/xxx
make
make install
再安装w3m,又出错:
checking size of long long... configure: error: cannot compute sizeof (long long), 77
See `config.log' for more details.
Google一下,在这里找到答案,原来GC库不在默认目录下时要修改:
export LDFLAGS='-Xlinker -R/home/xxx/lib'
再configure,通过了,make后运行,一切OK。