我从http://www.pcre.org下载了最新版本的 PCRE 库,获得了一个 tar.gz 文件。我正在使用 Ubuntu 12.04.1。
然后我用
gzip -d pcre- NN .tar.gz
tar xvf pcre- NN .tar
cd pcre- NN
./configure
make
然后我得到这个错误
libtool: compile: 无法识别的选项 `-DHAVE_CONFIG_H'
libtool: compile: 尝试 `libtool --help' 获取更多信息。
make[1]: * [pcrecpp.lo] 错误 1
然后我发现libtool没有安装,所以
sudo apt-get install libtool
但即使是现在,make也有同样的错误......
我该如何解决?