From c4848dbe9c7edf3f80df4b8207d358308ec2f832 Mon Sep 17 00:00:00 2001 From: Ralph Sennhauser Date: Wed, 30 Jul 2025 13:29:43 +0200 Subject: [PATCH] Require wxWidgets 3.2 wxWigets 3.0 does stuff that is deprecated in C++20, namely bitwise operation between different enumeration types. wxWidgets 3.2 has widespread support and in fact 3.3 was release recently so 3.4 won't be that far off anymore either. Requiring 3.2 will allow us to do several cleanups. Signed-off-by: Ralph Sennhauser --- build/jenkins/pipelines/freeBSD.Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jenkins/pipelines/freeBSD.Jenkinsfile b/build/jenkins/pipelines/freeBSD.Jenkinsfile index 0c5ea3aa4c..cc66567492 100644 --- a/build/jenkins/pipelines/freeBSD.Jenkinsfile +++ b/build/jenkins/pipelines/freeBSD.Jenkinsfile @@ -35,7 +35,7 @@ pipeline { environment { USE = 'iconv' - WX_CONFIG = '/usr/local/bin/wxgtk3u-3.0-config' + WX_CONFIG = '/usr/local/bin/wxgtk3u-3.2-config' CXXFLAGS = '-stdlib=libc++ ' LLVM_OBJDUMP = '/usr/bin/llvm-objdump' }