fmt from v11.0.0 onwards (https://github.com/fmtlib/fmt/commit/6b68dff90185efd6dd618fd315b5325b9fd0df16) [no longer builds](https://github.com/diasurgical/devilutionX/pull/7181) for Amiga and Xbox, with the same error on both: ```c++ fmt/format-inl.h:1638:5: error: 'flockfile' was not declared in this scope 1638 | flockfile(f); | ^~~~~~~~~ fmt/format-inl.h: In destructor 'fmt::v11::detail::file_print_buffer::~file_print_buffer()': fmt/format-inl.h:1646:5: error: 'funlockfile' was not declared in this scope; did you mean 'fallback_file'? 1646 | funlockfile(file_); | ^~~~~~~~~~~ | fallback_file ``` Would it be possible to add a define to avoid using lock/unlock/getc_unlocked, so that it can be built on platforms that do not support these functions?