From bab651a7a03b48ff909a49eabe2dbcef0e821496 Mon Sep 17 00:00:00 2001 From: apoorv569 <53279454+apoorv569@users.noreply.github.com> Date: Thu, 10 Feb 2022 19:39:47 +0000 Subject: [PATCH] Add wx-config-3.1 provided by mingw-w64-x86_64-wxmsw3.1 On Windows using MSYS2 MinGW installing the package `mingw-w64-x86_64-wxmsw3.1` provides `wx-config-3.1`. I have tried building my software by making this exact change and it build correctly. --- mesonbuild/dependencies/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py index 530a1011b..18b7bff1f 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -145,7 +145,7 @@ class SDL2DependencyConfigTool(ConfigToolDependency): class WxDependency(ConfigToolDependency): - tools = ['wx-config-3.0', 'wx-config', 'wx-config-gtk3'] + tools = ['wx-config-3.0', 'wx-config-3.1', 'wx-config', 'wx-config-gtk3'] tool_name = 'wx-config' def __init__(self, environment: 'Environment', kwargs: T.Dict[str, T.Any]):