I updated from Debian Jessie to Buster and now the shared code libraries (shared across Windows, Linux, etc..) build are broken in Linux (the library is over 20 years old, why break it).
The module it was building was .cpp, is there a switch to get it to use min()
as it was before. I'd rather not put a macro in the main header as it triggers a rebuild across all other platforms and the library is very large. No way can I force it to use std:min because other environments may use older compilers.
MORE INFORMATION:
This seems to be occurring if I include the following:
#include <stdlib.h>
TIA!!