1

我正在尝试在我的 Fedora 17 上安装 libpackedobjects。我尝试安装它的路径是 home/libpackedobjects。我遵循的步骤是:

  1. git clone git://gitorious.org/libpackedobjectsd/libpackedobjectsd.git
  2. cd libpackedobjectsd
  3. autoreconf -i
  4. ./configure

当我尝试运行./configure时出现错误:

checking for LIBPACKEDOBJECTS... no
configure: error: Package requirements (libpackedobjects) were not met:

No package 'libpackedobjects' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBPACKEDOBJECTS_CFLAGS
and LIBPACKEDOBJECTS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

我明白找不到路径,但不知道如何修复问题。有什么建议么?

4

1 回答 1

1

从您的错误报告中可以看出:

checking for LIBPACKEDOBJECTS... no
configure: error: Package requirements (libpackedobjects) were not met:

No package 'libpackedobjects' found

因此,您必须安装软件包libpackedobjectslibXml2安装libpackedobjectsd. 如果安装依赖包后仍然出现此错误,则可能存在 PATH 问题或链接问题。

于 2013-01-24T13:29:19.583 回答