如何使 PKG_CONFIG_PATH 变量引用已安装的库?

如何使 PKG_CONFIG_PATH 变量引用已安装的库?

我正在 Redhat Linux Nash 4.x 系统上安装 FireFox 3.6 所需的库。

我已经成功安装了 glib2.12.0 库,但是当我 ./configure the atk 1.9.0 库时,出现以下错误。

checking for pkg-config... /usr/bin/pkg-config
checking for GLIB - version >= 2.5.7... no
*** Could not run GLIB test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GLIB is incorrectly installed.
configure: error:
*** GLIB 2.5.7 or better is required. The latest version of
*** GLIB is always available from ftp://ftp.gtk.org/. If GLIB is installed
*** but not in the same location as pkg-config add the location of the file
*** glib-2.0.pc to the environment variable PKG_CONFIG_PATH.

如何添加环境变量的路径?

答案1

  1. 如果您可以从存储库安装。如果没有的话请检查两遍。
  2. 如果您无法尝试从 Firefox 页面捆绑 tarball。
  3. 不要手动安装所有依赖项,而是尝试从存储库安装它们。可以肯定的是,GLib 位于 debian 存储库中。您需要 -dev/-devel 或类似的命名包
  4. 对于这个特殊问题 - 您将软件包安装在称为前缀的位置。您可以通过 进行设置./configure --prefix=PREFIX,默认值为/usr/local。因此,您需要添加PREFIX/lib/pkgconfig到 PKG_CONFIG_DIR。确切的方法因 shell 而异,但最简单的选项(针对单个会话的时间)是命令export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH

作为最后一条建议 - 不要从源安装。它看起来要复杂得多,你会遇到问题。查看 Gentoo 操作系统revdep-rebuild(等)中有多少工具lafilefixer可以处理它。您将独自一人,firefox/xulrunner 以非标准方式使用某些部分将给出有用的错误,就像XPCOM cannot startSONAME 不匹配的情况一样。

卸载它们时您也会遇到问题,并且可能会在系统中留下垃圾。通常卸载脚本没有经过充分测试,甚至构建脚本也写得很粗心。

相关内容