构建Pulseaudio-11.1和intltool> = 0.35.0 bug

时间:2017-10-01 09:59:34

标签: linux twitter-bootstrap firefox makefile pulseaudio

我正在尝试构建pulseaudio-11.1因为firefox要求它在视频上播放音频。

我使用knoppix 8.1,64位安装,但它运行在32位。

当我配置pulseaudio源时,我收到一条消息,指出intltool太旧了。尽管已达到0.35.0的版本要求。我从源版本0.51.0和0.50.2安装,但安装都不满足需求。当我运行bootstrap.sh

时,我在最后收到相同的消息
root@kami:/Downloads/pulseaudio-11.1# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
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 whether make supports nested variables... yes
checking whether UID '0' is supported by ustar format... yes
checking whether GID '0' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for stow... no
checking whether make supports nested variables... (cached) yes
checking whether ln -s works... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking whether g++ supports C++11 features by default... yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... //bin/grep
checking for egrep... //bin/grep -E
checking whether gcc needs -traditional... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for gm4... no
checking for m4... m4
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking whether NLS is requested... yes
Unescaped left brace in regex is illegal here in regex; marked by <-- HERE  in m/^(.*)\${ <-- HERE ?([A-Z_]+)}?(.*)$/ at /usr/local/bin/intltool-update  line 1064.
checking for intltool >= 0.35.0...  found
configure: error: Your intltool is too old.  You need intltool 0.35.0 or  later.

这是在我删除预装的0.35.0版本的intltool之前和之后,然后安装了较新的版本0.51.0,然后是0.50.2以尝试稍微旧的版本,如果最新版本出现问题发布,具有讽刺意味的是可以追溯到2015年。

另外,你可以在输出中看到这个版本太过陈旧,以至于它找到了它所说的它没有的确切内容,这也是最常见的。

总而言之,pulseaudio要求它找到intltool&gt; = 0.35.0并且之后说它没有,这在3个单独的实例中仍然是正确的,它们满足了他们对版本0.35.0,0.51.0和0.50的请求0.2

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

在安装“ NetworkManager-l2tp-master”时,我偶然发现一个错误: configure: error: Your intltool is too old. You need intltool 0.35 or later。 我使用了中间命令:

1. ./configure
2. ./autogen.sh
3. automake
4. autoreconf
5. autoreconf -i
6. autoreconf -if
7. autoheader
8. ./configure (again)

之后,该错误已解决,并指示:

  • 配置:错误:未满足软件包要求(gtk + -3.0> = 3.4):
  • 未找到软件包'gtk + -3.0'
  • 如果您要调整PKG_CONFIG_PATH环境变量,请考虑 以非标准前缀安装的软件。
  • 或者,您可以设置环境变量GTK_CFLAGS 和GTK_LIBS,避免需要调用pkg-config。 有关更多详细信息,请参见pkg-config手册页。

此警报表明可能未安装pkg-config(Linux的对应版本)。