summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-08-06 15:33:48 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-08-06 15:33:48 +0000
commitbf88f2e9aa616c3f134485647aadac3eee95869a (patch)
treea534a328fcedb472d5b6ceb76a003d97acf7beef
parent4d8e17eadeb5714abd2690e7ac80629c61093fa2 (diff)
downloadlasso-bf88f2e9aa616c3f134485647aadac3eee95869a.tar.gz
lasso-bf88f2e9aa616c3f134485647aadac3eee95869a.tar.xz
lasso-bf88f2e9aa616c3f134485647aadac3eee95869a.zip
summarized libtool version info comment
-rw-r--r--configure.ac40
1 files changed, 6 insertions, 34 deletions
diff --git a/configure.ac b/configure.ac
index 86566820..46d31fd7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -91,40 +91,12 @@ AC_DEFINE_UNQUOTED(LASSO_VERSION_DECIMAL, $version_decimal, [Release version as
dnl Dirty hack in order to have dynamic resource version numbering.
AC_DEFINE_UNQUOTED(LASSO_WINDOWS_VERSION, $windows_version, [Windows version of the lasso version])
-# Libtool versioning
-#
-# CURRENT
-# The most recent interface number that this library implements.
-#
-# REVISION
-# The implementation number of the CURRENT interface.
-#
-# AGE
-# The difference between the newest and oldest interfaces that this
-# library implements. In other words, the library implements all the
-# interface numbers in the range from number `CURRENT - AGE' to
-# `CURRENT'.
-#
-# Rules:
-# 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.
-#
+dnl CURRENT, REVISION, AGE
+dnl - library source changed -> increment REVISION
+dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
+dnl - interfaces added -> increment AGE
+dnl - interfaces removed -> AGE = 0
+
# syntax: CURRENT[:REVISION[:AGE]]
# So if M=major, m=minor, r=release:
# c = M + a = M + m;