Skip to content

Commit

Permalink
increase minimum ABI version
Browse files Browse the repository at this point in the history
  • Loading branch information
mcorino committed Mar 16, 2024
1 parent 431e47c commit 481875c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rakelib/lib/config/unixish.rb
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ def init_unix_platform
# add ruby defined shared ruby lib(s); not any other flags
@ruby_libs.concat RB_CONFIG['LIBRUBYARG_SHARED'].split(' ').select { |s| s.start_with?('-l')}

# maintain minimum compatibility with ABI 3.0.0
@wx_abi_version = [ @wx_version, "3.0.0" ].min
# maintain minimum compatibility with ABI 3.0.1
@wx_abi_version = [ @wx_version, "3.0.1" ].min
@wx_cppflags << "-DwxABI_VERSION=%s" % @wx_abi_version.tr(".", "0")
end
end
Expand Down

0 comments on commit 481875c

Please sign in to comment.