]> git.saurik.com Git - wxWidgets.git/commitdiff
removed unused versioning variables
authorVáclav Slavík <vslavik@fastmail.fm>
Sat, 25 Jun 2005 11:12:39 +0000 (11:12 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sat, 25 Jun 2005 11:12:39 +0000 (11:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in

index 3d9ec6378f2674f5fdfb4165a399f3b255cbbbe3..cf60a93cee79d8bd4bd615f7df19b1625bfac0bd 100644 (file)
@@ -31,28 +31,6 @@ AC_CANONICAL_TARGET
 dnl When making releases do:
 dnl
 dnl wx_release_number += 1
-dnl
-dnl ..and update WX_CURRENT, WX_REVISION and WX_AGE according to the
-dnl following rules:
-dnl
-dnl    If any changes have been made to the public interface, that is if any
-dnl    exported class, method, global or global type has been added, removed
-dnl    or changed in any way, then do:  WX_CURRENT += 1
-dnl
-dnl    If source changes have been made that *do not* alter the public
-dnl    interface then do:  WX_REVISION += 1
-dnl    If WX_CURRENT was incremented (as above) instead do:  WX_REVISION = 0
-dnl
-dnl    If any public interface was added, do:  WX_AGE += 1
-dnl    If any public interface was removed (or altered in a way effectively
-dnl    removing the previous definition), instead do:  WX_AGE = 0
-dnl
-dnl When the major or minor version numbers are incremented, all the above
-dnl variables should be reset to 0. wx_subrelease_number should be set to zero
-dnl when major, minor or release numbers change.
-dnl
-dnl The resulting library name will be of the form:
-dnl   libwx_$(TOOLKIT)-$(WX_RELEASE).so.$(WX_CURRENT).$(WX_REVISION).$(WX_AGE)
 
 wx_major_version_number=2
 wx_minor_version_number=6
@@ -65,9 +43,6 @@ WX_SUBVERSION=$WX_VERSION.$wx_subrelease_number
 
 WX_MSW_VERSION=$wx_major_version_number$wx_minor_version_number$wx_release_number
 
-WX_CURRENT=1
-WX_REVISION=0
-WX_AGE=0
 
 
 dnl ------------------------------------------------------------------------