web-dev-qa-db-ja.com

Ubuntu 14.04でWget for firefoxをインストールする際の問題(Fireget拡張機能付き)

HOWTO:GwgetおよびFireget Firefox拡張機能のインストール の指示に従いました

しかし、(INSTALLファイルの命令を使用して)Gwgetをコンパイルしようとすると、次のエラーメッセージが表示されます。

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
Laurent06000

現在のバージョンの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  
_

それを行う必要があります。

Googleが翻訳している他のエラーメッセージは次のとおりです。

_No target specified and no makefile found. Off.
_

これは、_./configure_スクリプトを以前に失敗したために発生しました。これは、_[Mm]akefile_を作成するはずでしたが、作成しませんでした。最初の問題を修正すれば、この問題は解消されます。

1
waltinator