diff options
author | Kevin Ryde <user42@zip.com.au> | 2001-02-01 22:44:40 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2001-02-01 22:44:40 +0100 |
commit | 118dd1301cf794d02143fe00a7329a3b8fe5f5e3 (patch) | |
tree | a6387aa12cd811e6d2cc2ffcc1d847b1917632b0 /Makefile.am | |
parent | 48c6e2744c9b32e0b14b94275978dfe3b98a1572 (diff) | |
download | gmp-118dd1301cf794d02143fe00a7329a3b8fe5f5e3.tar.gz |
* Makefile.am (libtool -version-info): Bump appropriately.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 76f1e964a..48eb45f70 100644 --- a/Makefile.am +++ b/Makefile.am @@ -50,18 +50,19 @@ # 3.0.1 3:1:0 3:0:0 # 3.1 4:0:1 4:0:1 # 3.1.1 4:1:1 4:1:1 +# 3.2 5:0:2 4:2:1 # # Starting at 3:0:0 is a slight abuse of the versioning system, but it # ensures we're past soname libgmp.so.2, which was used on Debian GNU/Linux # packages of gmp 2. Pretend gmp 2 was 2:0:0, so the interface changes for # gmp 3 mean 3:0:0 is right. -LIBGMP_LT_CURRENT = 4 +LIBGMP_LT_CURRENT = 5 LIBGMP_LT_REVISION = 0 -LIBGMP_LT_AGE = 1 +LIBGMP_LT_AGE = 2 LIBMP_LT_CURRENT = 4 -LIBMP_LT_REVISION = 0 +LIBMP_LT_REVISION = 2 LIBMP_LT_AGE = 1 |