--- liblscp/trunk/configure.in 2005/02/13 17:20:46 378 +++ liblscp/trunk/configure.in 2005/07/21 13:30:31 712 @@ -2,11 +2,32 @@ AC_INIT(src/client.c) AM_CONFIG_HEADER(src/config.h) -AM_INIT_AUTOMAKE(liblscp, 0.2.4.2) +AM_INIT_AUTOMAKE(liblscp, 0.3.0.1) + +#------------------------------------------------------------------------------------ +# Rules for library version information: +# +# 1. Start with version information of `0:0:0' for each libtool library. +# 2. Update the version information only immediately before a public release of +# your software. More frequent updates are unnecessary, and only guarantee +# that the current interface number gets larger faster. +# 3. If the library source code has changed at all since the last update, then +# increment revision (`c:r:a' becomes `c:r+1:a'). +# 4. If any interfaces have been added, removed, or changed since the last update, +# increment current, and set revision to 0. +# 5. If any interfaces have been added since the last public release, then increment +# age. +# 6. If any interfaces have been removed since the last public release, then set age +# to 0. + +SHARED_VERSION_INFO="0:8:0" + +AC_SUBST(SHARED_VERSION_INFO) # Checks for programs. AC_PROG_CC AC_PROG_LIBTOOL +AM_PROG_LIBTOOL # Checks for header files. AC_HEADER_STDC