From 8e3fd46e92088e7d5a282c3ec61781dd5a303eb6 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 9 Jun 2022 17:27:22 +0200 Subject: [PATCH] Document that linking with oleacc.lib is also required now This wasn't mentioned in the change log before, but is also new since 3.0, see #22507. --- docs/changes.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index a0fa994718..ce61743059 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -155,7 +155,8 @@ 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`. -- wxMSW now requires linking with uxtheme.lib, shlwapi.lib and version.lib. +- wxMSW now requires linking with a few more system libraries: oleacc.lib, + shlwapi.lib, uxtheme.lib and version.lib. This is done automatically in most cases, but if you use a static build of the library with a non-MSVC compiler such as MinGW and do not use wx-config, then you will need to add these libraries to your make or project files