在 Ubuntu 14.04 上为 Firefox 安装 Wget 时出现问题(以及 fireget 扩展)

在 Ubuntu 14.04 上为 Firefox 安装 Wget 时出现问题(以及 fireget 扩展)

我按照如何安装 Gwget 和 Fireget Firefox 扩展

但是当我尝试编译 Gwget(使用 INSTALL 文件中的指令)时出现以下错误消息:

laurent06000@PC-DE-LDP:~/Téléchargements/gwget-1.0.4$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gconftool-2... /usr/bin/gconftool-2
checking whether NLS is requested... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
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 dependency style of gcc... gcc3
checking for intltool >= 0.35.0... ./configure: line 3598: intltool-update: command not found
 found
configure: error: Your intltool is too old.  You need intltool 0.35.0 or later.

然后当我输入 make 时:

laurent06000@PC-DE-LDP:~/Téléchargements/gwget-1.0.4$ make
make: *** Pas de cible spécifiée et aucun makefile n'a été trouvé. Arrêt.

此外,当我尝试打开 FireGet-0.6.xpi 文件时,它告诉我该版本与我的 Firefox 版本 (41) 不兼容。

任何想法 ?

答案1

安装最新版本的intltool。我的 Ubuntu 14.04.3 系统有

||/ Name           Version      Architecture Description
+++-==============-============-============-=================================
ii  intltool       0.50.2-2     all          Utility scripts for international

这:

sudo apt-get install intltool  

应该这么做。

谷歌翻译显示的另一条错误信息是:

No target specified and no makefile found. Off.

是由脚本先前的失败引起的./configure,该脚本原本应该创建[Mm]akefile,但实际上并未创建。解决第一个问题,这个问题就会消失。

相关内容