web-dev-qa-db-ja.com

Libtoolライブラリが使用されていますが、 `LIBTOOL 'は未定義ですか?

サーバーにffmpegをインストールしようとしています。私はcentos5を歌っていません。

Libfdk_aacをインストールしようとすると、次のエラーが発生します

` autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --force-missing
Makefile.am:31: Libtool library used but `LIBTOOL' is undefined
Makefile.am:31:
Makefile.am:31: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL'
Makefile.am:31: to `configure.ac' and run `aclocal' and `autoconf' again.
Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
autoreconf: automake failed with exit status: 1 ` 

/ usr/bin/libtoolを取得するlibtoolを入力すると、libtoolがインストールされていると思います。したがって、なぜこのエラーが発生しているのかわかりません。

アドバイスをありがとう

9
Sam Healey

エラーは、libtoolがインストールされていないか、configure.acでチェックしていないことを示しています。 LT_INITに行configure.acを追加します。 autoreconfLT_INITが何であるかわからないと文句を言う場合は、libtoolをインストールするか、libtoolのインストールをアップグレードするか、configure.acで非推奨のAC_PROG_LIBTOOLを使用する必要があります。 (新しいプロジェクトでは、AC_PROG_LIBTOOLLT_INITに置き換える必要があります。)

9
William Pursell

私も同じ問題を抱えていました。次のことをしました

$brew install libtool
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/libtool-    2.4.2.mavericks.bottle.2.tar.gz
######################################################################## 100.0%
==> Pouring libtool-2.4.2.mavericks.bottle.2.tar.gz
==> Caveats
In order to prevent conflicts with Apple's own libtool we have prepended a "g"
so, you have instead: glibtool and glibtoolize.
==> Summary
????  /usr/local/Cellar/libtool/2.4.2: 66 files, 2.2M
fdk-aac $ glibtoolize
fdk-aac $ autoreconf -fiv
fdk-aac $ ./configure
fdk-aac $ make
fdk-aac $ make -install
go to ffmpeg/build
ffmpeg/build$ ../configure --enable-libfdk-aac --enable-nonfree
ffmpeg/build$make
ffmpeg/build$Sudo make install
do ls /usr/local/lib/*fdk* check that libfdk-aac is installed
go to my application

 myapp/build$cmake ../
 myapp/build$make

お役に立てれば

6
codegen

CentOSでnginxのgeoipをインストールするときに(makeコマンドを実行しようとしたときに)同じ問題が発生しました。これが私が行ったことです。 yum install libtool configure.in AC_CONFIG_MACRO_DIR([m4])の最後に以下の行を追加しました

Makefile.amの最後に以下の行を追加しますACLOCAL_AMFLAGS = -I m4

$ aclocal $ libtoolizeを実行します

理由を聞かないでください。しかし、これはうまくいきました。

1
MudithaE