- MFH: add new default dir (old still works)

This commit is contained in:
Pierre Joye 2008-08-01 11:25:42 +00:00
parent c1ddd7bea5
commit cb10c3be61

View file

@ -209,6 +209,9 @@ if (PHP_DEBUG == "yes" && PHP_ZTS == "yes") {
ARG_WITH('php-build', 'Path to where you extracted http://www.php.net/extra/win32build.zip. Assumes that it is a sibling of this source dir (..\\php_build) if not specified', 'no'); ARG_WITH('php-build', 'Path to where you extracted http://www.php.net/extra/win32build.zip. Assumes that it is a sibling of this source dir (..\\php_build) if not specified', 'no');
if (PHP_PHP_BUILD == 'no') { if (PHP_PHP_BUILD == 'no') {
if (FSO.FolderExists("..\\deps")) {
PHP_PHP_BUILD = "..\\deps";
} else {
if (FSO.FolderExists("..\\php_build")) { if (FSO.FolderExists("..\\php_build")) {
PHP_PHP_BUILD = "..\\php_build"; PHP_PHP_BUILD = "..\\php_build";
} else { } else {
@ -227,6 +230,7 @@ if (PHP_PHP_BUILD == 'no') {
} }
} }
} }
}
ARG_WITH('extra-includes', 'Extra include path to use when building everything', ''); ARG_WITH('extra-includes', 'Extra include path to use when building everything', '');
ARG_WITH('extra-libs', 'Extra library path to use when linking everything', ''); ARG_WITH('extra-libs', 'Extra library path to use when linking everything', '');