mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
504b9beae6
#Note that these do not require modification when the version number changes. #Utilizes the new partitioned version number defines in php_version.h @ Added version info to the dll and exe files created under Windows. (jtate)
62 lines
2.0 KiB
Plaintext
62 lines
2.0 KiB
Plaintext
//
|
|
// php4dllts.RC2 - resources Microsoft Visual C++ does not edit directly
|
|
//
|
|
|
|
#ifdef APSTUDIO_INVOKED
|
|
#error this file is not editable by Microsoft Visual C++
|
|
#endif //APSTUDIO_INVOKED
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Add manually edited resources here...
|
|
#include "../main/php_version.h"
|
|
|
|
#define XSTRVER4(maj, min, rel, build) #maj "." #min "." #rel "." #build
|
|
#define XSTRVER3(maj, min, rel) #maj "." #min "." #rel
|
|
#define STRVER4(maj, min, rel, build) XSTRVER4(maj, min, rel, build)
|
|
#define STRVER3(maj, min, rel) XSTRVER3(maj, min, rel)
|
|
|
|
#ifndef _MAC
|
|
//Version
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,PHP_RELEASE_VERSION
|
|
PRODUCTVERSION PHP_MAJOR_VERSION,PHP_MINOR_VERSION,PHP_RELEASE_VERSION,0
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0"
|
|
BEGIN
|
|
VALUE "Comments", "\0"
|
|
VALUE "CompanyName", "The PHP Group\0"
|
|
VALUE "FileDescription", "PHP Script Interpreter\0"
|
|
VALUE "FileVersion", STRVER4(PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION, PHP_RELEASE_VERSION)
|
|
VALUE "InternalName", "php\0"
|
|
VALUE "LegalCopyright", "Copyright © 2002 The PHP Group\0"
|
|
VALUE "LegalTrademarks", "php\0"
|
|
VALUE "OriginalFilename", "php4ts.dll\0"
|
|
VALUE "PrivateBuild", "\0"
|
|
VALUE "ProductName", "PHP Thread Safe\0"
|
|
VALUE "ProductVersion", STRVER3(PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION)
|
|
VALUE "SpecialBuild", PHP_EXTRA_VERSION "\0"
|
|
VALUE "URL", "http://www.php.net"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|
|
|
|
#endif // !_MAC
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|