]> git.saurik.com Git - wxWidgets.git/blobdiff - build/bakefiles/version.bkl
Change wxBoxSizer::AddSpacer() to only add space in sizer direction.
[wxWidgets.git] / build / bakefiles / version.bkl
index b00f7100e9d6d3fcc812313cb8991b6789191bb1..b2e39fcc97fd9ef3c51318a80bfb9fb6d858293e 100644 (file)
@@ -23,7 +23,7 @@
        3. Else, i.e. if there were no changes at all to API but only internal
           changes, change C:R:A to C:R+1:A
     -->
-    <set var="WX_CURRENT">0</set>
+    <set var="WX_CURRENT">1</set>
     <set var="WX_REVISION">0</set>
     <set var="WX_AGE">0</set>
 
@@ -72,7 +72,8 @@
     <!-- FIXME: until libtool scheme is implemented in bakefile -->
     <set var="WXMACVERSION_CMD">
         <if cond="PLATFORM_MACOSX=='1'">
-            -compatibility_version $(WX_AGE).0 -current_version $(WX_AGE).$(WX_REVISION)
+           <!-- Version can't be 0, so add 1 to it to force it to be non null -->
+            -compatibility_version $(int(WX_AGE)+1).0 -current_version $(int(WX_AGE)+1).$(WX_REVISION)
         </if>
     </set>