Restore dynamic linking of GDI functions for non-MSVC.

This partially reverts the changes of r77029 and r77039: now functions such as
Set/GetLayout(), AlphaBlend() and GradientFill() are still called (almost)
directly when using MSVC but pass by dynamic loading with the other compilers,
which don't have #pragma comment(lib) and, in MinGW case, also lack some of
these functions in their libraries even if we do link with them.

Closes #16411.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77068 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-08-14 12:11:39 +00:00
parent 40c84134ae
commit 21da20d579
7 changed files with 275 additions and 63 deletions

View File

@@ -22,8 +22,6 @@ Changes in behaviour which may result in build errors
- "webview" library is not included in `wx-config --libs` output any more, you
need to request it explicitly, e.g. `wx-config --libs std,webview`.
- MinGW users will need to add "-lmsimg32" to their makefiles when using
statically linked wxWidgets libraries if not using wx-config.
3.1.0: (released 2014-xx-xx)