web-dev-qa-db-ja.com

phpizeはMac OS X Lionでは動作しません

Xdebugをインストールしようとしましたが、「phpize」に関する以下のエラーメッセージが表示されます。どうすればこれを修正できますか?

leny:~ nick$ Sudo pecl install xdebug
Password:
downloading xdebug-2.1.2.tgz ...
Starting to download xdebug-2.1.2.tgz (304,229 bytes)
............done: 304,229 bytes
66 source files, building
running: phpize
Configuring for:
PHP Api Version:         20090626
Zend Module Api No:      20090626
Zend Extension Api No:   220090626
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.

ERROR: `phpize' failed
26
directory

「autoconfが見つかりません」-autoconfをインストールして再試行します。

Sudo port install autoconfしかし、私の知る限り、XcodeとMacPortsが必要です。

26
Narcis Radu

自作でautoconfをインストールすることもできます。ただ走れ

brew install autoconf

そして、すべてが機能します

79
jeroenbourgois

私にとって、私はXcodeライセンスに同意していませんでした:-

$ Sudo /usr/bin/m4 --version


You have not agreed to the Xcode license agreements. You must agree to both license agreements below in order to use Xcode.

Hit the Enter key to view the license agreements at '/Applications/Xcode.app/Contents/Resources/English.lproj/License.rtf'

IMPORTANT: BY USING THIS SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE FOLLOWING Apple TERMS:
1
jormerod1981