Merge lp:~brianaker/drizzle/fix-libdrizzle-version into lp:~drizzle-trunk/drizzle/development

Proposed by Brian Aker
Status: Merged
Approved by: Brian Aker
Approved revision: 2513
Merged at revision: 2514
Proposed branch: lp:~brianaker/drizzle/fix-libdrizzle-version
Merge into: lp:~drizzle-trunk/drizzle/development
Diff against target: 49 lines (+3/-18)
2 files modified
configure.ac (+2/-17)
libdrizzle-1.0/include.am (+1/-1)
To merge this branch: bzr merge lp:~brianaker/drizzle/fix-libdrizzle-version
Reviewer Review Type Date Requested Status
Drizzle Merge Team Pending
Review via email: mp+93655@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Henrik Ingo (hingo) wrote :

FYI
I have updated https://code.launchpad.net/~hingo/libdrizzle/libdrizzle-versioning so that it matches changes made by Brian in this branch. libdrizzle should work just fine after these changes - fingers crossed.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'configure.ac'
2--- configure.ac 2012-02-08 21:33:04 +0000
3+++ configure.ac 2012-02-17 21:54:18 +0000
4@@ -26,22 +26,7 @@
5
6 PANDORA_CANONICAL_TARGET(less-warnings, require-cxx, force-gcc42, version-from-vc)
7
8-LIBDRIZZLE_LIBRARY_VERSION=3:0:0
9-# | | |
10-# +------+ | +---+
11-# | | |
12-# current:revision:age
13-# | | |
14-# | | +- increment if interfaces have been added
15-# | | set to zero if interfaces have been
16-# | | removed or changed
17-# | +- increment if source code has changed
18-# | set to zero if current is incremented
19-# +- increment if interfaces have been added, removed or
20-# changed
21-AC_SUBST(LIBDRIZZLE_LIBRARY_VERSION)
22-
23-OLDLIBDRIZZLE_LIBRARY_VERSION=2:0:1
24+LIBDRIZZLE_LIBRARY_VERSION=4:0:0
25 # | | |
26 # +------+ | +---+
27 # | | |
28@@ -54,7 +39,7 @@
29 # | set to zero if current is incremented
30 # +- increment if interfaces have been added, removed or
31 # changed
32-AC_SUBST(OLDLIBDRIZZLE_LIBRARY_VERSION)
33+AC_SUBST(LIBDRIZZLE_LIBRARY_VERSION)
34
35 # libdrizzle versioning when linked with GNU ld.
36 AS_IF([test "$lt_cv_prog_gnu_ld" = "yes"],[
37
38=== modified file 'libdrizzle-1.0/include.am'
39--- libdrizzle-1.0/include.am 2012-01-13 06:27:22 +0000
40+++ libdrizzle-1.0/include.am 2012-02-17 21:54:18 +0000
41@@ -46,7 +46,7 @@
42 $(AM_LDFLAGS) \
43 $(GCOV_LIBS) \
44 -version-info \
45- $(OLDLIBDRIZZLE_LIBRARY_VERSION)
46+ $(LIBDRIZZLE_LIBRARY_VERSION)
47
48 libdrizzle_1_0_libdrizzle_la_SOURCES= \
49 libdrizzle/column.cc \