diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in index 4be4fb90d..93f9f5a86 100644 --- a/Makefile.in +++ b/Makefile.in @@ -150,22 +150,22 @@ mpn_objs_in_libgmp = @mpn_objs_in_libgmp@ # GMP -version-info # release libgmp libmp # 2.0.x - - -# 3.0 3:0:1 3:0:1 +# 3.0 3:0:0 3:0:0 # # -# Starting at 3:0:1 is a slight abuse of the versioning system, but it makes -# libtool produce libgmp.so.2.1.0 on GNU/Linux, matching unofficial shared -# libraries built from gmp 2.0.x, with which gmp 3 is upwardly compatible. -# Pretend gmp 2 was 2:0:0. +# Starting at 3:0:0 is a slight abuse of the versioning system, but it +# ensures we're past soname libgmp.so.2, which is what has been 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 = 3 LIBGMP_LT_REVISION = 0 -LIBGMP_LT_AGE = 1 +LIBGMP_LT_AGE = 0 LIBMP_LT_CURRENT = 3 LIBMP_LT_REVISION = 0 -LIBMP_LT_AGE = 1 +LIBMP_LT_AGE = 0 AUTOMAKE_OPTIONS = gnu check-news no-dependencies @@ -176,7 +176,7 @@ EXTRA_HEADERS = mp.h lib_LTLIBRARIES = libgmp.la $(MPBSD_LTLIBRARIES_OPTION) -EXTRA_DIST = gmp-impl.h longlong.h stack-alloc.h urandom.h +EXTRA_DIST = gmp-impl.h longlong.h stack-alloc.h urandom.h projects DISTCLEANFILES = asm-syntax.h config.m4 @gmp_srclinks@ MPF_OBJECTS = mpf/init.lo mpf/init2.lo mpf/set.lo mpf/set_ui.lo mpf/set_si.lo \ |