diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2011-02-28 11:14:21 +0100 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2011-02-28 11:20:27 +0100 |
commit | d7321e950c1eb5a0a6c029e84863c364af01bb0e (patch) | |
tree | b962c376b3c47e488cbf36912580487dc70b35e5 | |
parent | ec9ba9c7939230974b09b7757adaf8b5a84b77b9 (diff) |
version bump: new revision, mark in .pc file
The VERSION set by AM_INIT_AUTOMAKE() was only used in the *.pc files
and has never been updated since the initial Linux release. Bumped it
to 3.4, so that SyncEvolution can test for a recent enough libsynthesis
during configuration.
Also incremented the .so. New features were added, without breaking
backwards compatibility. This is not quite the same as extending the
ABI, but close.
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | src/Makefile.am.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index e2a0c14..57a6c3a 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ dnl Invoke autogen.sh to produce a configure script. AC_INIT(src/sysync/engineinterface.cpp) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE(syncevolution, 0.8-beta2) +AM_INIT_AUTOMAKE(synthesis, 3.4) AM_CONFIG_HEADER(config.h) AC_LIBTOOL_DLOPEN diff --git a/src/Makefile.am.in b/src/Makefile.am.in index 9e0f9bb..7e5b245 100644 --- a/src/Makefile.am.in +++ b/src/Makefile.am.in @@ -21,9 +21,9 @@ $(srcdir)/Makefile.am: $(srcdir)/Makefile.am.in $(srcdir)/gen-makefile-am.sh # incompatible way, increment CURRENT and reset AGE and REVISION to # zero. When fixing something without interface change, increment # REVISION. -ENGINE_CURRENT = 4 +ENGINE_CURRENT = 5 ENGINE_REVISION = 0 -ENGINE_AGE = 4 +ENGINE_AGE = 5 CLEANFILES = EXTRA_DIST = |