Contrary to the Statement in readme.w32 Make 4.0 does not comile with
MSVC7.1. Output.c uses CRT features not available:
1) _TRUNCATE is unknown
Workaround: use (size_t)-1
2) vsnprintf unknown
Workaround: use _vsnprintf
3) _vsnprintf_s unknown
Workaround: replace
len = _vsnprintf_s (str, size, _TRUNCATE, format, ap);
with
len = _vsnprintf (str, /*size,*/ (size_t)-1, format, ap);
exe was built but didn't test it so far. Hope you Keep on supporting
MSVC2003 as I won't by any further MS Compiler...
Regards,
Bob
_______________________________________________
Bug-make mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-make