Building tkpath version 0.3.1 on Windows does not work:
1. The object files in win/makefile.vc are wrong;
2. The generated pkgIndex.tcl is wrong, so after installation, the package cannot be used;
3. The version in the makefile is still 0.2.2;
4. The compilation of the utility nmakehlp.exe
Patch for win/makefile.vc
[end of bug report missing…]
4. The compilation of the utility nmakehlp.exe fails because of an unresolved reference to wnsprintf.
The attached file makefile.vc.patch corrects the Makefile. Adding:
#ifdef _MSC_VER
#define snprintf _snprintf
#endif
#define wnsprintf snprintf
at line 28 in nmakehlp.c corrects point 4.