0

FreeBSD 8.0 に pecl-event をインストールしようとしましたが、エラーが発生しました:

# pecl install event
Failed to download pecl/event within preferred state "stable", latest release is version 0.9.1, stability "beta", use "channel://pecl.php.net/event-0.9.1" to install
install failed
# pecl install "channel://pecl.php.net/event-0.9.1"
downloading event-0.9.1.tar ...
Starting to download event-0.9.1.tar (Unknown size)
.....................done: 113,664 bytes
11 source files, building
running: phpize
Cannot find config.m4.
Make sure that you run '/usr/local/bin/phpize' in the top level source directory of the module

ERROR: `phpize' failed

私は何を間違っていますか?インストール方法は?

4

1 に答える 1

1

event-0.9.1.tar ファイルを一時フォルダーに抽出します。(例: /tmp/tmp1 ) 一時フォルダーに config.m4 ファイルを含むサブフォルダーに移動します。

「/usr/local/bin/phpize」があることを確認してください。そこにない場合... phpize の場所を見つけて、/usr/local/bin/phpize へのシンボリック リンクを作成します。

もう一度実行してみるより

于 2013-02-03T18:13:52.530 に答える