|
From: Harald O. <har...@el...> - 2019-11-20 22:16:14
|
Am 20.11.2019 um 21:46 schrieb Donald G Porter via Tcl-Core: > Now available at > > https://sourceforge.net/projects/tcl/files/Tcl/8.6.10/ > > are candidate files making up the RC2 pre-releases of Tcl and Tk 8.6.10. Thank you ! Test with MS-VC6++ PSDK2003SP1 32bit on win64 pro ger Compiling issue: sqlite does not compile. test compared to tcl/tk8.6.9: tcl & bundeled: no test failures at all !!! tk: cured tests: textTag-18.1 Still failing: winfont-2.7, winfont-2.8, winfont-2.9 Thank you, Harald ---- Compile error in sqlite: rc -fo C:\test\tcl8.6.10\pkgs\sqlite3.30.1.1\win\Release\sqlite_ThreadedDynamic\sqlite.res -r -i "C:\test\tcl8.6.10\pkgs\sqlite3.30.1.1\win\..\generic" -i "C:\test\tcl8.6.10\pkgs\sqlite3.30.1.1\win\Release\sqlite_ThreadedDynamic" -I"C:\test\tcl8.6.10\win\..\generic" -I"C:\test\tcl8.6.10\win\..\win" /DDEBUG=0 -d UNCHECKED=0 /DCOMMAVERSION=3,30,1,1,0 /DDOTVERSION=\"3.30.1.1\" /DVERSION=\"33011\" /DSUFX=\"t\" /DPROJECT=\"sqlite\" /DPRJLIBNAME=\"sqlite33011t.dll\" C:\test\tcl8.6.10\pkgs\sqlite3.30.1.1\win\Release\sqlite_ThreadedDynamic\sqlite.rc C:\test\tcl8.6.10\pkgs\sqlite3.30.1.1\win\Release\sqlite_ThreadedDynamic\sqlite.rc(4) : error RC2167 : unrecognized VERSIONINFO field; BEGIN or comma expected The complained file "sqlite.rc" is identical to tcl 8.6.9. There is only one additional trailing space but this does not change the error message. The complained file contents is below. I suppose there is anyway a replacement step of the variables to its values missing (e.g. COMMAVERSION -> 8.6.10) #include <winver.h> VS_VERSION_INFO VERSIONINFO FILEVERSION COMMAVERSION PRODUCTVERSION COMMAVERSION FILEFLAGSMASK 0x3fL #ifdef DEBUG FILEFLAGS VS_FF_DEBUG #else FILEFLAGS 0x0L #endif FILEOS VOS_NT_WINDOWS32 FILETYPE VFT_DLL FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE "FileDescription", "Tcl extension " PROJECT VALUE "OriginalFilename", PRJLIBNAME VALUE "FileVersion", DOTVERSION VALUE "ProductName", "Package " PROJECT " for Tcl" VALUE "ProductVersion", DOTVERSION END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END |