From: Vadim Zeitlin Date: Mon, 3 Oct 2005 20:56:20 +0000 (+0000) Subject: offset version by 1 to avoid having compatibility_version of 0.0.0 under Darwin:... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6ce8b8484654b5ab073951373c93d9bdd8221881?ds=inline offset version by 1 to avoid having compatibility_version of 0.0.0 under Darwin: this is forbidden git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35783 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/build/bakefiles/version.bkl b/build/bakefiles/version.bkl index b00f7100e9..0dab6e49bf 100644 --- a/build/bakefiles/version.bkl +++ b/build/bakefiles/version.bkl @@ -72,7 +72,8 @@ - -compatibility_version $(WX_AGE).0 -current_version $(WX_AGE).$(WX_REVISION) + + -compatibility_version $(int(WX_AGE)+1).0 -current_version $(int(WX_AGE)+1).$(WX_REVISION)