ANNOUNCE: DJGPP port of libfmt 9.0.0 now available
From [via djgpp@delorie.com]" @21:1/5 to All on Fri Aug 12 19:15:06 2022
This is a port of the {fmt} library to DJGPP. {fmt} is a fast and type-safe text formatting library for C++, with an elegant syntax. It is intended to be a replacement for printf or iostreams. See the readme file for more details:
To make this library compile for djgpp, only minor changes were necessary to work around missing libc support for wide-character strings. Basically a few instances of typedefs such as 'std::wstring', which we don't have, had to be replaced with the types they are supposed to alias, eg. 'std::basic_string<wchar_t>'. Code using wchar_t strings may compile, but don't expect meaningful results.
Unfortunately the author was not interested in maintaining djgpp compatibility, so I now provide my own fork.
The test suite does not compile, again due to missing wchar_t functionality in libc. I don't see any need to port the tests to djgpp, however.