Buggenie 插件安装问题

Buggenie 插件安装问题

我正在尝试在 wordpress (ubuntu 10.04) 上安装/配置 buggenie 插件。我在 pcre 8.0 版本中遇到错误。在谷歌上搜索了很多次,但都没有解决问题,我陷入了更糟糕的困境。

sudo apt-get install libpcre3 libpcre3-dev

然后我下载了 libpcre 8.0 版本,make 失败,

make  all-am
make[1]: Entering directory `/home/<homedir>/Downloads/pcre-8.30'
  CXX    pcrecpp.lo
libtool: compile: unrecognized option `-DHAVE_CONFIG_H'
libtool: compile: Try `libtool --help' for more information.
make[1]: *** [pcrecpp.lo] Error 1
make[1]: Leaving directory `/home/<homedir>/Downloads/pcre-8.30'
make: *** [all] Error 2

做了一些研究,发现我需要安装 g++ 和 build-essential

sudo apt-get install g++
sudo apt-get install build-essential

然而我在“make”时遇到了同样的错误。

答案1

Ubuntu 10.04 没有所需的 pcre 版本。我想我需要升级到较新版本的 Ubuntu。

相关内容