mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Provide core includes for the resource compiler by default
This commit is contained in:
commit
fc09d7e76f
1 changed files with 3 additions and 3 deletions
|
@ -1119,7 +1119,7 @@ function generate_version_info_resource(makefiletarget, basename, creditspath, s
|
|||
*/
|
||||
if (FSO.FileExists(creditspath + '\\template.rc')) {
|
||||
MFO.WriteLine("$(BUILD_DIR)\\" + resname + ": " + creditspath + "\\template.rc");
|
||||
MFO.WriteLine("\t$(RC) /nologo /fo $(BUILD_DIR)\\" + resname + logo + debug +
|
||||
MFO.WriteLine("\t$(RC) /nologo $(BASE_INCLUDES) /fo $(BUILD_DIR)\\" + resname + logo + debug +
|
||||
' /d FILE_DESCRIPTION="\\"' + res_desc + '\\"" /d FILE_NAME="\\"' +
|
||||
makefiletarget + '\\"" /d PRODUCT_NAME="\\"' + res_prod_name +
|
||||
versioning + '\\"" /d THANKS_GUYS="\\"' + thanks + '\\"" ' +
|
||||
|
@ -1128,14 +1128,14 @@ function generate_version_info_resource(makefiletarget, basename, creditspath, s
|
|||
}
|
||||
if (MODE_PHPIZE) {
|
||||
MFO.WriteLine("$(BUILD_DIR)\\" + resname + ": $(PHP_DIR)\\build\\template.rc");
|
||||
MFO.WriteLine("\t$(RC) /nologo /I $(PHP_DIR)/include /n /fo $(BUILD_DIR)\\" + resname + logo + debug +
|
||||
MFO.WriteLine("\t$(RC) /nologo $(BASE_INCLUDES) /I $(PHP_DIR)/include /n /fo $(BUILD_DIR)\\" + resname + logo + debug +
|
||||
' /d FILE_DESCRIPTION="\\"' + res_desc + '\\"" /d FILE_NAME="\\"'
|
||||
+ makefiletarget + '\\"" /d URL="\\"' + project_url +
|
||||
'\\"" /d INTERNAL_NAME="\\"' + internal_name + versioning +
|
||||
'\\"" /d THANKS_GUYS="\\"' + thanks + '\\"" $(PHP_DIR)\\build\\template.rc');
|
||||
} else {
|
||||
MFO.WriteLine("$(BUILD_DIR)\\" + resname + ": win32\\build\\template.rc");
|
||||
MFO.WriteLine("\t$(RC) /nologo /n /fo $(BUILD_DIR)\\" + resname + logo + debug +
|
||||
MFO.WriteLine("\t$(RC) /nologo $(BASE_INCLUDES) /n /fo $(BUILD_DIR)\\" + resname + logo + debug +
|
||||
' /d FILE_DESCRIPTION="\\"' + res_desc + '\\"" /d FILE_NAME="\\"'
|
||||
+ makefiletarget + '\\"" /d URL="\\"' + project_url +
|
||||
'\\"" /d INTERNAL_NAME="\\"' + internal_name + versioning +
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue