去这里开始http://us.php.net/manual/en/install.php。还要考虑这个,这个和这个。
您将需要阅读如何编译 PHP。它是从命令行完成的,所以如果您对此不满意,请小心。另请注意,在 Mac 上编译的细节非常详细,一个微小的失误会导致安装软管。
由于您使用的是 Mac,请查看Marc Liyanage 的软件包(尽管我不知道他们是否配置了 Tidy)。还可以考虑使用 MacPorts 来完成所有这些工作(对于确保安装所有依赖项特别有用)。如果您必须从头开始,请理解您确实需要知道自己在做什么。
不碍事的:
基本流程是配置、制作、制作安装。
以下是一些示例配置(不要使用这些。路径是特定于某些安装的,您会有不同的。这只是为了向您展示配置的外观):
./configure --with-mysql=/Applications/MAMP/Library --with-apxs2=/Applications/MAMP/Library/bin/apxs --with-gd --with-jpeg-dir=/Applications/MAMP/Library
./configure --prefix=/usr/local/apache2/php --with-zlib --with-xml --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql
因此,您需要将需要/想要的任何其他配置选项--with-tidy
添加到该列表中。
这是另一个显示 make 和 make install--with-tidy
的示例(最后请注意):
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --mandir=/usr/share/man --infodir=/usr/share/info --with-apxs2=/usr/sbin/apxs --with-curl --with-gd --enable-exif --enable-fastcgi --enable-zip --with-ldap=/usr --with-kerberos=/usr --with-zlib=/usr --enable-ftp --enable-sockets --with-iodbc=/usr --with-config-file-path=/etc --with-openssl --with-xmlrpc --with-xsl=/usr --with-tidy=/usr/bin/tidy
make
sudo make install
阅读此内容并准备好几次才能正确完成(整个过程也需要一段时间)