jhbuild无法为libxslt和libxml2依赖项构建yelp-xsl [英] jhbuild failed to build yelp-xsl for libxslt and libxml2 dependencies

查看:148
本文介绍了jhbuild无法为libxslt和libxml2依赖项构建yelp-xsl的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图通过 jhbuild 进行编译yelp-xsl(libyelp和 yelp 使用的核心XSLT样式表)。

I am trying to compile via jhbuild the yelp-xsl (The core XSLT stylesheets used by libyelp and yelp).

我使用Ubuntu Raring 13.04从今天完全更新。

I am using Ubuntu Raring 13.04 fully updated from today.

我有所有依赖关系建议安装Ubuntu 以及相关的开发包:

I have all the dependencies recommended for Ubuntu installed and related development packages too:

$ dpkg -l libxslt* | grep dev; dpkg -l libxml2* | grep dev
un  libxslt-dev                                   <none>                                                       (no description available)
ii  libxslt1-dev                                  1.1.27-1ubuntu1                                 i386         XSLT 1.0 processing library - development kit
ii  libxml2-dev:i386                              2.9.0+dfsg1-4ubuntu1                            i386         Development files for the GNOME XML library

但运行编译时,我得到一个失败的结果:

But running the compilation I get a failed result:

$ jhbuild build yelp-xsl
*** Verificando itstool *** [1/2]
*** Omitiendo itstool (paquete y dependencias no actualizados) *** [1/2]
*** Verificando yelp-xsl *** [2/2]
git remote set-url origin git://git.gnome.org/yelp-xsl
git remote update origin
Fetching origin
git pull --rebase
Current branch master is up to date.
*** Configurando yelp-xsl *** [2/2]
./autogen.sh --prefix /opt/gnome --libdir '/opt/gnome/lib'  --disable-static --disable-gtk-doc
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4 ${ACLOCAL_FLAGS}
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /opt/gnome/bin/autoconf --force
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --force-missing
doc/yelp-xsl/Makefile.am:12: filter-out %db2html-suppressed.xsl,                        \
doc/yelp-xsl/Makefile.am:12:    $(sort $(patsubst ./%, %,                                       \
doc/yelp-xsl/Makefile.am:12:      $(foreach dir,$(xsldoc_dirs: non-POSIX variable name
doc/yelp-xsl/Makefile.am:12: (probably a GNU make extension)
doc/yelp-xsl/Makefile.am:12: wildcard $(dir: non-POSIX variable name
doc/yelp-xsl/Makefile.am:12: (probably a GNU make extension)
doc/yelp-xsl/Makefile.am:15: sort $(foreach xsl,$(xsldoc_xsls: non-POSIX variable name
doc/yelp-xsl/Makefile.am:15: (probably a GNU make extension)
doc/yelp-xsl/Makefile.am:15: basename $(notdir $(xsl: non-POSIX variable name
doc/yelp-xsl/Makefile.am:15: (probably a GNU make extension)
doc/yelp-xsl/Makefile.am:16: patsubst %, C/%.page, $(xsldoc_base: non-POSIX variable name
doc/yelp-xsl/Makefile.am:16: (probably a GNU make extension)
doc/yelp-xsl/Makefile.am:24: filter %/$(basename $(notdir $@: non-POSIX variable name
doc/yelp-xsl/Makefile.am:24: (probably a GNU make extension)
doc/yelp-xsl/Makefile.am:36: wildcard C/*.page: non-POSIX variable name
doc/yelp-xsl/Makefile.am:36: (probably a GNU make extension)
xslt/docbook/html/Makefile.am:30: wildcard db*.xsl: non-POSIX variable name
xslt/docbook/html/Makefile.am:30: (probably a GNU make extension)
autoreconf: Leaving directory `.'
configure: WARNING: unrecognized options: --disable-static, --disable-gtk-doc
checking for a BSD-compatible install... /home/shakaran/.local/bin/install-check
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gawk... (cached) gawk
checking for itstool... itstool
checking for pkg-config... /opt/gnome/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for YELP_XSL... no
configure: error: Package requirements (
        libxml-2.0 >= 2.6.12
        libxslt    >= 1.1.8
) were not met:

No package 'libxml-2.0' found
No package 'libxslt' 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 YELP_XSL_CFLAGS
and YELP_XSL_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
*** Error durante la fase configure de yelp-xsl: ########## Error de ejecución ./autogen.sh --prefix /opt/gnome --libdir '/opt/gnome/lib'  --disable-static --disable-gtk-doc  *** [2/2]


推荐答案

所以运行:

$ pkg-config --modversion libxml-2.0 libxslt

报告 2.9.0 1.1.27 版本,但正在运行:

Reports 2.9.0 and 1.1.27 versions, but running:

$ jhbuild run pkg-config --modversion libxml-2.0 libxslt
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxml-2.0' found
Package libxslt was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxslt.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxslt' found

解决此问题的唯一解决方案是完全擦除 / opt / gnome / 文件夹,然后重试。然后一切正常。

The only solution for fix this problem is wipe fully the /opt/gnome/ folder and try again. Then all work fine.

这篇关于jhbuild无法为libxslt和libxml2依赖项构建yelp-xsl的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆