diff options
author | davygrvy <davygrvy@noemail.net> | 2003-12-16 02:43:56 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@noemail.net> | 2003-12-16 02:43:56 (GMT) |
commit | eae21909106690a7f48ff83a731d8a2d5d2c069b (patch) | |
tree | a548461bf29ea6197ba0601b93064a3185fe6858 | |
parent | 46502dbe2eb70ed20bbdaa1b2209edc605e8106b (diff) | |
download | tcl-eae21909106690a7f48ff83a731d8a2d5d2c069b.zip tcl-eae21909106690a7f48ff83a731d8a2d5d2c069b.tar.gz tcl-eae21909106690a7f48ff83a731d8a2d5d2c069b.tar.bz2 |
* win/tcl.rc: Slight modification to the STRINGIFY macro to
support Borland's rc tool. From Helmut Giese
<hgiese@ratiosoft.com>.
FossilOrigin-Name: 97ef66fca17aebfcadf90edc29ecaf1d1311e097
-rw-r--r-- | win/tcl.rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |