0

libwebsocket をインストールするとエラーが発生します:---
http://git.warmcat.com/cgi-bin/cgit/libwebsockets/snapshot/libwebsockets-1.0-chrome25-firefox17.tar.gz

/pi/libwebsockets-1.0-chrome25-firefox17$ ./autogen.sh 
Preparing the libwebsockets build system...please wait

Found GNU Autoconf version 2.69
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
    LANGUAGE = "en_US:",
    LC_ALL = (unset),
    LANG = "en_US.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
    LANGUAGE = "en_US:",
    LC_ALL = (unset),
    LANG = "en_US.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
Found GNU Automake version 1.13
Found GNU Libtool version 1.5.26

Automatically preparing build ... Warning: autoreconf failed
Attempting to run the preparation steps individually

Preparing build ... ERROR: aclocal failed

現在 libtool --version:--- を実行すると

/home/pi$ libtool --version
ltmain.sh (GNU libtool) 1.5.26 (1.1220.2.492 2008/01/30 06:40:56)

Copyright (C) 2008  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

whereisコマンドを実行すると、次の出力が得られます:----

/pi/libtool-2.4.2$ whereis libtool
libtool:

上記のエラーを取り除くには、libtool バージョン 2.4.2 をインストールする必要があります。
今、libtool の 2.4.2 バージョンをインストールしました:---
ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.2.tar.gz

2.4.2 バージョンの libtool をインストールした後、whereis コマンドを実行すると、次の出力が得られます:----

/pi/libtool-2.4.2$ whereis libtool
libtool: /usr/local/bin/libtool

しかし、libtool --version:--- を実行すると

/home/pi$ libtool --version
ltmain.sh (GNU libtool) 1.5.26 (1.1220.2.492 2008/01/30 06:40:56)

libtool --version コマンドがインストールされている libtool 2.4.2 の最新バージョンを表示しないのはなぜですか?

また、 ./autogen.sh を実行すると、libwebsocket で同じエラーが発生します。

4

1 に答える 1

0

CMake を使用して最新バージョン (1.22) を試しましたか? 構築するのは簡単です。

$ git clone git://git.libwebsockets.org/libwebsockets
$ cd libwebsockets/

README.build を読んでください。古いバージョンの libwebsockets については知りませんが、現在は autotools よりも CMake を使用する傾向にあると思います。

$ mkdir build && cd build
$ cmake ..  -DCMAKE_INSTALL_PREFIX:PATH=/usr/local

最後の行は次のようになります。

$ ./configure --prefix=/usr/local

全体が非常に迅速に構築され、問題はありませんでした。

于 2013-04-10T14:08:04.097 に答える