如何使用 ./configure 设置变量
How to set variables with ./configure
我正在尝试编译并安装一个新的 PHP 版本,与我现有的 pthreads 版本相邻。
运行./configure
,进程使用我默认的系统PHP变量,
不是我所在的那些:
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib
checking for PHP extension directory... /usr/lib/php5/20100525
checking for PHP installed headers prefix... /usr/include/php5
checking if debug is enabled... no
checking if zts is enabled... no
如何将其更改为使用 /usr/local/src/php-5.6.5/ext
?
这就完成了工作:
./configure --prefix=/usr/local/src/php-5.6.5
我正在尝试编译并安装一个新的 PHP 版本,与我现有的 pthreads 版本相邻。
运行./configure
,进程使用我默认的系统PHP变量,
不是我所在的那些:
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib
checking for PHP extension directory... /usr/lib/php5/20100525
checking for PHP installed headers prefix... /usr/include/php5
checking if debug is enabled... no
checking if zts is enabled... no
如何将其更改为使用 /usr/local/src/php-5.6.5/ext
?
这就完成了工作:
./configure --prefix=/usr/local/src/php-5.6.5