From: <svn...@op...> - 2009-06-29 14:13:54
|
Author: bellmich Date: Mon Jun 29 16:06:44 2009 New Revision: 1137 URL: http://libsyncml.opensync.org/changeset/1137 Log: incremented SO naming to libsyncml.so.3 to avoid conflicts with productive 0.5.x installations Modified: trunk/CMakeLists.txt Modified: trunk/CMakeLists.txt ============================================================================== --- trunk/CMakeLists.txt Mon Jun 29 16:05:51 2009 (r1136) +++ trunk/CMakeLists.txt Mon Jun 29 16:06:44 2009 (r1137) @@ -6,9 +6,11 @@ SET( LIBSYNCML_VERSION "${LIBSYNCML_VERSION_MAJOR}.${LIBSYNCML_VERSION_MINOR}.${LIBSYNCML_VERSION_PATCH}" ) # The most recent interface number that this library implements. -#UPDATE: If any interface have been added, removed or changed since +#UPDATE: If any interface have been added or changed since #UPDATE: the last update increment CURRENT. -SET( LIBSYNCML_LIBVERSION_CURRENT 6 ) +#UPDATE: If any interface have been removed since the last update +#UPDATE: then set CURRENT to AGE - CURRECT + 1. +SET( LIBSYNCML_LIBVERSION_CURRENT 3 ) # The implementation number of the CURRENT interface. # UPDATE: Increment only if the library code has changed at all, since @@ -22,7 +24,7 @@ # UPDATE: release, then increment. # UPDATE: If any interface have been removed since the last release # UPDATE: reset to 0. -SET( LIBSYNCML_LIBVERSION_AGE 4 ) +SET( LIBSYNCML_LIBVERSION_AGE 0 ) # The range of implemention CURRENT - AGE is the SOVERSION MATH( EXPR LIBSYNCML_LIBVERSION_SOVERSION "${LIBSYNCML_LIBVERSION_CURRENT} - ${LIBSYNCML_LIBVERSION_AGE}" ) |