Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Do not need Tcl sources. Also fix rc file macro name. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | vc-reform |
Files: | files | file ages | folders |
SHA3-256: |
3ee1af86cf4f065a9f55c49e373d108a |
User & Date: | apnadkarni 2017-12-11 09:09:36.721 |
Context
2017-12-11
| ||
16:29 | Updated copy of Tcl nmake support files and make use of default stubs and header installs check-in: 501f635181 user: apnadkarni tags: vc-reform | |
09:09 | Do not need Tcl sources. Also fix rc file macro name. check-in: 3ee1af86cf user: apnadkarni tags: vc-reform | |
2017-12-10
| ||
13:06 | Do not need the cwarn macro check-in: 2fee183e61 user: apnadkarni tags: vc-reform | |
Changes
Changes to win/makefile.vc.
︙ | ︙ | |||
13 14 15 16 17 18 19 | # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # #------------------------------------------------------------------------------ PROJECT = tdbc | < | > | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # #------------------------------------------------------------------------------ PROJECT = tdbc RCFILE = tdbc.rc # Tcl 8.6 etc. compile with /DUNICODE. TDBC pre-nmake reform compiled # without -DUNICODE using explicit W suffixes on wide character calls. # Keep that behaviour for now. USE_WIDECHAR_API = 0 !include "rules-ext.vc" !if [echo REM = This file is generated from Makefile.vc > versions.vc] !endif !if [echo TCL_VERSION_REQ = \>> versions.vc] \ |
︙ | ︙ |
Changes to win/tdbc.rc.
︙ | ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 | BLOCK "040904b0" BEGIN VALUE "FileDescription", "Tcl Database Connectivity " DOTVERSION "\0" VALUE "OriginalFilename", PRJLIBNAME VALUE "CompanyName", "The Tcl Development Community\0" VALUE "FileVersion", DOTVERSION "\0" VALUE "LegalCopyright", "Copyright \251 2008 Kevin Kenny et al.\0" VALUE "ProductName", "Tcl Database Connectivity " DOTVERSION "\0" VALUE "ProductVersion", DOTVERSION "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 | > | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | BLOCK "040904b0" BEGIN VALUE "FileDescription", "Tcl Database Connectivity " DOTVERSION "\0" VALUE "OriginalFilename", PRJLIBNAME VALUE "CompanyName", "The Tcl Development Community\0" VALUE "FileVersion", DOTVERSION "\0" VALUE "LegalCopyright", "Copyright \251 2008 Kevin Kenny et al.\0" VALUE "Copyright", "Copyright \251 2008 Kevin Kenny et al.\0" VALUE "ProductName", "Tcl Database Connectivity " DOTVERSION "\0" VALUE "ProductVersion", DOTVERSION "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 |
︙ | ︙ |