You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simplify generation of error messages for missing libpng/freetype.
Since we don't manually check anymore for the presence of the headers,
we'll never detect in setup.py/setupext.py that freetype or libpng are
missing, so the message generation using install_help_msg() will never
be used. Delete the relevant chunk of code.
However, when using recent enough compilers (e.g. gcc 5 / VS2017 15.3),
we can generate similar error messages on the compiler's side using
`__has_include` (which is technically part of C++17, but always enabled
by the compiler as an extension --
https://www.gnu.org/software/gcc/gcc-5/changes.htmlhttps://blogs.msdn.microsoft.com/vcblog/2017/05/10/c17-features-in-vs-2017-3/
).
0 commit comments