1

当我运行 phpsize 时,出现以下错误:

$ cd /usr/local/xcache-2.0.0
$ phpize
grep: /usr/include/php/main/php.h: No such file or directory
grep: /usr/include/php/Zend/zend_modules.h: No such file or directory
grep: /usr/include/php/Zend/zend_extensions.h: No such file or directory
Configuring for:
PHP Api Version:        
Zend Module Api No:     
Zend Extension Api No:  
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.

我已经安装了 xcode 4.3.2

4

1 回答 1

3

您需要autoconf实用程序来完成安装。您可以安装Homebrew然后执行

brew install autoconf

在终端。之后重复 XCache 安装。

我更喜欢 Homebrew,因为它易于使用,并且将所有数据都放在 /usr/local 中,并且不需要您提供 sudo 密码。因此,与 MacPots 相比,它在您的系统中保留的垃圾更少。但是,任何包管理器都会有所帮助。

UPD: 不要忘记检查 XCode 是否安装了命令行工具

于 2012-08-13T11:55:12.117 回答