Maarten
Maarten
I don't think it is necessary to add this to 3.2.5 and recreate the release files. The workaround is easy enough. I can create a PR with the backport, and...
Hi, 1) The wxWidgets install target was designed to do a full installation of the wxWidgets library for developers. So it includes all the headers and libraries. Your use case...
You could try `find_package(wxWidgets CONFIG)`. Then it will use the cmake config files instead of `FindwxWidgets`. However, I don't know if these are correct when cross-compiling.
> I'm afraid it doesn't. It could be a good idea adding a build installing the external libraries using vcpkg, but for now I'd settle for just installing the WebP...
I think it is there because the file was a copy of the main `setup.h.in`. The CMake build system itself doesn't use it. Do you want to replace it with...
`setup.h.in` is used by configure to generate `setup.h`. `build/cmake/setup.h.in` is used by CMake to generate `setup.h`. When installing, this `setup.h` is put in `lib//mswu/wx/setup.h`. The msvc solutions (and makefile.gcc/vc) don't...
I can reproduce it. For me it doesn't happen on the DPI change, but when moving borders of a pane after the DPI change. Then the captions/headers get their original...
> I'll (gratefully) let you turn your patch into a PR I created #24844
Why can't it find `fp.h`? Is it missing an include path, or are the preprocessor defines different? From `pngpriv.h`: ```c++ #if defined(PNG_FLOATING_POINT_SUPPORTED) ||\ defined(PNG_FLOATING_ARITHMETIC_SUPPORTED) /* png.c requires the following ANSI-C...
Maybe we can just cherry-pick this fix for 3.2 https://github.com/pnggroup/libpng/commit/893b8113f04d408cc6177c6de19c9889a48faa24 ```diff diff --git a/pngpriv.h b/pngpriv.h index 6c7280cf53..190eb85cbf 100644 --- a/pngpriv.h +++ b/pngpriv.h @@ -556,18 +556,8 @@ */ # include -#...