From 90c11bf620b30526a05ea50bebbb0d21231e702d Mon Sep 17 00:00:00 2001 From: Martin Corino Date: Sat, 9 Nov 2024 17:10:30 +0100 Subject: [PATCH 1/2] fix unwanted potential dependency on libcurl (introduced by addition of Wx::WebCredentials) --- rakelib/lib/config/mingw.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rakelib/lib/config/mingw.rb b/rakelib/lib/config/mingw.rb index b5d3d22a..8e499766 100644 --- a/rakelib/lib/config/mingw.rb +++ b/rakelib/lib/config/mingw.rb @@ -98,7 +98,7 @@ def bash(*cmd, **kwargs) private def wx_configure - bash('./configure --prefix=`pwd`/install --disable-tests --without-subdirs --without-regex --with-expat=builtin --with-zlib=builtin --disable-debug_info') + bash('./configure --prefix=`pwd`/install --disable-tests --without-subdirs --without-regex --without-libcurl --with-expat=builtin --with-zlib=builtin --disable-debug_info') end def wx_make From a6eb74570b8ef4d6d7b41c51e6cd6625859c2329 Mon Sep 17 00:00:00 2001 From: Martin Corino Date: Sat, 9 Nov 2024 18:35:35 +0100 Subject: [PATCH 2/2] bump version --- lib/wx/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wx/version.rb b/lib/wx/version.rb index d5a95ff0..b054a955 100644 --- a/lib/wx/version.rb +++ b/lib/wx/version.rb @@ -3,5 +3,5 @@ # This software is released under the MIT license. module Wx - WXRUBY_VERSION = '1.3.1' + WXRUBY_VERSION = '1.3.2' end