diff options
author | davygrvy <davygrvy@noemail.net> | 2002-06-18 00:12:23 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@noemail.net> | 2002-06-18 00:12:23 (GMT) |
commit | 93647930a8e659b9fc0d9a39cb63250b388c161a (patch) | |
tree | a79e28d26611c7fd48e8b2d9c1e181f68684c545 /win/tcl.rc | |
parent | 427f18bff81c9af71289fe2472c5b400f68349a1 (diff) | |
download | tcl-93647930a8e659b9fc0d9a39cb63250b388c161a.zip tcl-93647930a8e659b9fc0d9a39cb63250b388c161a.tar.gz tcl-93647930a8e659b9fc0d9a39cb63250b388c161a.tar.bz2 |
Trims to support the removal of RESOURCE_INCLUDED from rc
scripts from FR #565088.
* generic/tcl.h: moved the #ifndef RC_INVOKED start block up in
the file. rc scripts don't need to know thread mutexes.
* win/tcl.rc:
* win/tclsh.rc: removed the #define RESOURCE_INCLUDED to let the
built-in -DRC_INVOKED to the work.
FossilOrigin-Name: 7e44d394ded07f1cb8b11fe844dc07365f688fb8
Diffstat (limited to 'win/tcl.rc')
-rw-r--r-- | win/tcl.rc | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,11 +1,9 @@ -// RCS: @(#) $Id: tcl.rc,v 1.7 2001/10/01 20:57:20 hobbs Exp $ +// RCS: @(#) $Id: tcl.rc,v 1.8 2002/06/18 00:12:24 davygrvy Exp $ // // Version Resource Script // #include <winver.h> - -#define RESOURCE_INCLUDED #include <tcl.h> // @@ -46,7 +44,7 @@ BEGIN BLOCK "040904b0" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */ BEGIN VALUE "FileDescription", "Tcl DLL\0" - VALUE "OriginalFilename", "tcl" STRINGIFY(TCL_MAJOR_VERSION) STRINGIFY(TCL_MINOR_VERSION) SUFFIX ".dll\0" + VALUE "OriginalFilename", "tcl" STRINGIFY(JOIN(TCL_MAJOR_VERSION,TCL_MINOR_VERSION)) SUFFIX ".dll\0" VALUE "CompanyName", "ActiveState Corporation\0" VALUE "FileVersion", TCL_PATCH_LEVEL VALUE "LegalCopyright", "Copyright \251 2001 by ActiveState Corporation, et al\0" |