1

我正在尝试让 Mono 使用 fastCGI 在 nginx 上工作。

我已经完成了 CentOS 6 的全新安装,并执行了所有更新。然后我安装了 nginx,并打开了我需要的防火墙。我现在可以毫无问题地从 nginx 中看到简单的 HTML 页面。

然后我按照本教程通过 Git 安装 Mono: https ://stackoverflow.com/a/13424880/221456

libgdiplus 安装了很好的单声道安装了很好的 xsp,当我运行 autogen(带前缀)时,给了我这个错误:

检查 MONO_MODULE... 配置:错误:未满足包要求(单声道 >= 2.10.0):

找不到包“单”

我做了一些搜索,我唯一能找到的就是运行这个命令:

导出 PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

我已经尝试过,但是我仍然收到完全相同的错误消息。

我错过了什么?

4

1 回答 1

2

The problem is with the variable

export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

the correct is

export PKG_CONFIG_PATH=/usr/lib/pkgconfig

because you compile with the with the prefix. /usr

于 2014-04-07T22:57:12.123 回答