~vcs-imports/neon/trunk

« back to all changes in this revision

Viewing changes to macros/neon.m4

  • Committer: joe
  • Date: 2013-07-31 15:55:25 UTC
  • Revision ID: svn-v4:61a7d7f5-40b7-0310-9c16-bb0ea8cb1845:neon/trunk:1930
Tags: 0.30.0
* macros/neon.m4, configure.in: Fix ABI versioning for backwards-compat
  with 0.27.x.

Show diffs side-by-side

added added

removed removed

Lines of Context:
140
140
NE_VERSION_PATCH=0
141
141
NE_VERSION_TAG=
142
142
 
143
 
# libtool library interface versioning.  Release policy dictates that
144
 
# for neon 0.x.y, each x brings an incompatible interface change, and
145
 
# each y brings no interface change, and since this policy has been
146
 
# followed since 0.1, x == CURRENT, y == RELEASE, 0 == AGE.  For
147
 
# 1.x.y, this will become N + x == CURRENT, y == RELEASE, x == AGE,
148
 
# where N is constant (and equal to CURRENT + 1 from the final 0.x
149
 
# release)
150
 
NE_LIBTOOL_VERSINFO="${NE_VERSION_MINOR}:${NE_VERSION_PATCH}:0"
 
143
# 0.30.x is backwards-compatible to 0.27.x, so AGE=3
 
144
NE_LIBTOOL_VERSINFO="30:${NE_VERSION_PATCH}:3"
151
145
 
152
146
NE_DEFINE_VERSIONS
153
147