mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
fix default prefix in phpize mode
This commit is contained in:
parent
a8e0a623ec
commit
8044d0680b
@ -105,6 +105,11 @@ if (PHP_DEBUG == "yes" && PHP_DEBUG_PACK == "yes") {
|
||||
ERROR("Use of both --enable-debug and --enable-debug-pack not allowed.");
|
||||
}
|
||||
|
||||
if (PHP_PREFIX == '') {
|
||||
PHP_PREFIX = "C:\\php";
|
||||
if (PHP_DEBUG == "yes")
|
||||
PHP_PREFIX += "\\debug";
|
||||
}
|
||||
DEFINE('PHP_PREFIX', PHP_PREFIX);
|
||||
|
||||
DEFINE("BASE_INCLUDES", "/I " + PHP_DIR + "/include /I " + PHP_DIR + "/include/main /I " + PHP_DIR + "/include/Zend /I " + PHP_DIR + "/include/TSRM /I " + PHP_DIR + "/include/ext ");
|
||||
|
Loading…
Reference in New Issue
Block a user