summaryrefslogtreecommitdiffstats
path: root/win/tcl.rc
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2003-12-16 02:43:57 (GMT)
committerdavygrvy <davygrvy@pobox.com>2003-12-16 02:43:57 (GMT)
commit1507b662546b275a56d4239975de5a453f67d370 (patch)
treea548461bf29ea6197ba0601b93064a3185fe6858 /win/tcl.rc
parentfc439f29847dd8bf62bcf25c6a0072f103600829 (diff)
downloadtcl-1507b662546b275a56d4239975de5a453f67d370.zip
tcl-1507b662546b275a56d4239975de5a453f67d370.tar.gz
tcl-1507b662546b275a56d4239975de5a453f67d370.tar.bz2
* win/tcl.rc: Slight modification to the STRINGIFY macro to
support Borland's rc tool. From Helmut Giese <hgiese@ratiosoft.com>.
Diffstat (limited to 'win/tcl.rc')
-rw-r--r--win/tcl.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tcl.rc b/win/tcl.rc
index 746f5dd..93677bf 100644
--- a/win/tcl.rc
+++ b/win/tcl.rc
@@ -1,4 +1,4 @@
-// RCS: @(#) $Id: tcl.rc,v 1.8 2002/06/18 00:12:24 davygrvy Exp $
+// RCS: @(#) $Id: tcl.rc,v 1.9 2003/12/16 02:43:57 davygrvy Exp $
//
// Version Resource Script
//
@@ -44,7 +44,7 @@ BEGIN
BLOCK "040904b0" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */
BEGIN
VALUE "FileDescription", "Tcl DLL\0"
- VALUE "OriginalFilename", "tcl" STRINGIFY(JOIN(TCL_MAJOR_VERSION,TCL_MINOR_VERSION)) SUFFIX ".dll\0"
+ VALUE "OriginalFilename", "tcl" STRINGIFY(TCL_MAJOR_VERSION) STRINGIFY(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"