summaryrefslogtreecommitdiff
path: root/win32/php5ts_cli.rc2
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2008-11-06 13:31:59 +0000
committerPierre Joye <pajoye@php.net>2008-11-06 13:31:59 +0000
commit2bb865af0c35c2225c1eb7be228e9e7c2245c5c4 (patch)
tree252689d92be9d5079cd3586bea5dfdf994d34c94 /win32/php5ts_cli.rc2
parentfe82c3ecedde7305d37e6e2a569d50dd4200c0cd (diff)
downloadphp-git-2bb865af0c35c2225c1eb7be228e9e7c2245c5c4.tar.gz
- revert previous commit (borked editor)
Diffstat (limited to 'win32/php5ts_cli.rc2')
-rw-r--r--win32/php5ts_cli.rc263
1 files changed, 1 insertions, 62 deletions
diff --git a/win32/php5ts_cli.rc2 b/win32/php5ts_cli.rc2
index b1acec1614..517bd4ab34 100644
--- a/win32/php5ts_cli.rc2
+++ b/win32/php5ts_cli.rc2
@@ -1,122 +1,61 @@
//
-
// php5dllts.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_APP
-
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-cli\0"
-
- VALUE "LegalCopyright", "Copyright © 1997-2008 The PHP Group\0"
-
+ VALUE "LegalCopyright", "Copyright © 1997-2006 The PHP Group\0"
VALUE "LegalTrademarks", "php\0"
-
VALUE "OriginalFilename", "php.exe\0"
-
VALUE "PrivateBuild", "\0"
-
VALUE "ProductName", "PHP Thread Safe Command Line Interface\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
-
-
/////////////////////////////////////////////////////////////////////////////
-