summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-10-31 10:35:59 +0100
committerAnatol Belski <ab@php.net>2017-10-31 10:35:59 +0100
commit98422cfa3df722b3b65dac9540874d9ba7bf6d82 (patch)
tree82c84577faf69cf368aa6985231108b09d3ed8a5
parent6eb4daabeb69cc426fe2c19c473acb35af05502a (diff)
parent8a3e2a6b14393a4d44f0d2a18f019ba36904db25 (diff)
downloadphp-git-98422cfa3df722b3b65dac9540874d9ba7bf6d82.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: Fix year Add /nologo
-rw-r--r--win32/build/Makefile2
-rw-r--r--win32/build/confutils.js6
-rw-r--r--win32/build/template.rc2
3 files changed, 5 insertions, 5 deletions
diff --git a/win32/build/Makefile b/win32/build/Makefile
index e1c64710ba..52eb26f5aa 100644
--- a/win32/build/Makefile
+++ b/win32/build/Makefile
@@ -108,7 +108,7 @@ _VC_MANIFEST_EMBED_DLL= if exist $@.manifest $(MT) -nologo -manifest $@.manifest
!endif
$(PHPDLL_RES): win32\build\template.rc
- $(RC) /fo $(PHPDLL_RES) /d FILE_DESCRIPTION="\"PHP Script Interpreter\"" \
+ $(RC) /nologo /fo $(PHPDLL_RES) /d FILE_DESCRIPTION="\"PHP Script Interpreter\"" \
/d FILE_NAME="\"$(PHPDLL)\"" /d PRODUCT_NAME="\"PHP Script Interpreter\"" \
/I$(BUILD_DIR) /d MC_INCLUDE="\"$(MCFILE)\"" \
win32\build\template.rc
diff --git a/win32/build/confutils.js b/win32/build/confutils.js
index 05ee1b27c0..ffdb2cd92f 100644
--- a/win32/build/confutils.js
+++ b/win32/build/confutils.js
@@ -1097,7 +1097,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) /fo $(BUILD_DIR)\\" + resname + logo + debug +
+ MFO.WriteLine("\t$(RC) /nologo /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 + '\\"" ' +
@@ -1106,14 +1106,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) /I $(PHP_DIR)/include /n /fo $(BUILD_DIR)\\" + resname + logo + debug +
+ MFO.WriteLine("\t$(RC) /nologo /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) /n /fo $(BUILD_DIR)\\" + resname + logo + debug +
+ MFO.WriteLine("\t$(RC) /nologo /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 +
diff --git a/win32/build/template.rc b/win32/build/template.rc
index 83c28934a5..34b8fd70b7 100644
--- a/win32/build/template.rc
+++ b/win32/build/template.rc
@@ -65,7 +65,7 @@ BEGIN
#endif
VALUE "FileVersion", EXT_VERSION
VALUE "InternalName", INTERNAL_NAME
- VALUE "LegalCopyright", "Copyright © 1997-2016 The PHP Group"
+ VALUE "LegalCopyright", "Copyright © 1997-2017 The PHP Group"
VALUE "LegalTrademarks", "PHP"
VALUE "OriginalFilename", FILE_NAME
VALUE "ProductName", "PHP"