mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
442627408f
Now all the uses of the licence text or the short copyright notice get
it from a new header "licence.h", which in turn is built by a Perl
script licence.pl invoked by mkfiles.pl, using LICENCE itself as the
source.
Hence, I can completely remove a whole section from the list of
licence locations in CHECKLST.txt :-)
(cherry picked from commit 9ddd071ec2
)
Conflicts:
unix/gtkdlg.c
windows/winpgnt.c
(cherry-picker's notes: one conflict was just changed context, the
other was deleting a copy of the licence that wasn't quite the same
between branches)
61 lines
1.8 KiB
Plaintext
61 lines
1.8 KiB
Plaintext
/*
|
|
* Standard Windows version information.
|
|
* (For inclusion in other .rc files with appropriate macro definitions.)
|
|
* FIXME: This file is called '.rc2' rather than '.rc' to avoid MSVC trying
|
|
* to compile it on its own when using the project files. Nicer solutions
|
|
* welcome.
|
|
*/
|
|
|
|
#include "version.h"
|
|
#include "licence.h"
|
|
|
|
/*
|
|
* The actual VERSIONINFO resource.
|
|
*/
|
|
VS_VERSION_INFO VERSIONINFO
|
|
/* (None of this "fixed" info appears to be trivially user-visible on
|
|
* Win98SE. The binary version does show up on Win2K.) */
|
|
FILEVERSION BINARY_VERSION
|
|
PRODUCTVERSION BINARY_VERSION /* version of whole suite */
|
|
FILEFLAGSMASK VS_FF_DEBUG | VS_FF_PRERELEASE | VS_FF_PRIVATEBUILD
|
|
FILEFLAGS 0x0L
|
|
#if defined DEBUG
|
|
| VS_FF_DEBUG
|
|
#endif
|
|
#if defined SNAPSHOT || defined PRERELEASE
|
|
| VS_FF_PRERELEASE
|
|
#elif !defined RELEASE
|
|
| VS_FF_PRIVATEBUILD
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE 0x0L /* n/a for VFT_APP */
|
|
BEGIN
|
|
/* (On Win98SE and Win2K, we can see most of this on the Version tab
|
|
* in the file properties in Explorer.) */
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
/* "lang-charset" LLLLCCCC = (UK English, Unicode) */
|
|
BLOCK "080904B0"
|
|
BEGIN
|
|
VALUE "CompanyName", "Simon Tatham" /* required :/ */
|
|
VALUE "ProductName", "PuTTY suite"
|
|
VALUE "FileDescription", APPDESC
|
|
VALUE "InternalName", APPNAME
|
|
VALUE "OriginalFilename", APPNAME
|
|
VALUE "FileVersion", TEXTVER
|
|
VALUE "ProductVersion", TEXTVER
|
|
VALUE "LegalCopyright", "Copyright \251 " SHORT_COPYRIGHT_DETAILS "."
|
|
#if (!defined SNAPSHOT) && (!defined RELEASE) && (!defined PRERELEASE)
|
|
/* Only if VS_FF_PRIVATEBUILD. */
|
|
VALUE "PrivateBuild", TEXTVER /* NBI */
|
|
#endif
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
/* Once again -- same meanings -- apparently necessary */
|
|
VALUE "Translation", 0x809, 1200
|
|
END
|
|
END
|