aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-04-09 03:04:20 +0800
committerChris Toshok <toshok@src.gnome.org>2004-04-09 03:04:20 +0800
commitd29047d941bd4781fa55d7d39715fdc4c52afe60 (patch)
tree3170e9973e5c8aa87040974208448da887cd3cad
parent7fecce2d23b2b565a40bd6cf4cc99a9456ffba74 (diff)
downloadgsoc2013-evolution-d29047d941bd4781fa55d7d39715fdc4c52afe60.tar
gsoc2013-evolution-d29047d941bd4781fa55d7d39715fdc4c52afe60.tar.gz
gsoc2013-evolution-d29047d941bd4781fa55d7d39715fdc4c52afe60.tar.bz2
gsoc2013-evolution-d29047d941bd4781fa55d7d39715fdc4c52afe60.tar.lz
gsoc2013-evolution-d29047d941bd4781fa55d7d39715fdc4c52afe60.tar.xz
gsoc2013-evolution-d29047d941bd4781fa55d7d39715fdc4c52afe60.tar.zst
gsoc2013-evolution-d29047d941bd4781fa55d7d39715fdc4c52afe60.zip
add a new variable that should be bumped whenever a migration change
2004-04-08 Chris Toshok <toshok@ximian.com> * configure.in (UPGRADE_REVISION): add a new variable that should be bumped whenever a migration change happens in any component. svn path=/trunk/; revision=25376
-rw-r--r--ChangeLog5
-rw-r--r--configure.in14
2 files changed, 14 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 36c6775ace..eba1da28a5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-08 Chris Toshok <toshok@ximian.com>
+
+ * configure.in (UPGRADE_REVISION): add a new variable that should
+ be bumped whenever a migration change happens in any component.
+
2004-04-07 Samúel Jón Gunnarsson <sammi@techattack.nu>
* configure.in: Added "is" to ALL_LINGUAS
diff --git a/configure.in b/configure.in
index 93d612704d..158faad007 100644
--- a/configure.in
+++ b/configure.in
@@ -1133,6 +1133,14 @@ EVO_SET_COMPILE_FLAGS(EVOLUTION_TEST, libgnome-2.0 libgnomeui-2.0 libbonobo-2.0
AC_SUBST(EVOLUTION_TEST_CFLAGS)
AC_SUBST(EVOLUTION_TEST_LIBS)
+BASE_VERSION=`echo $VERSION | awk -F. '{print $1 "." $2;}'`
+AC_SUBST(BASE_VERSION)
+AC_DEFINE_UNQUOTED(BASE_VERSION, "$BASE_VERSION", [Base version (Major.Minor)])
+
+UPGRADE_REVISION=6
+AC_SUBST(UPGRADE_REVISION)
+AC_DEFINE_UNQUOTED(UPGRADE_REVISION, "$UPGRADE_REVISION", [The number of times we've upgraded since the BASE_VERSION release])
+
dnl *******************
dnl Special directories
dnl *******************
@@ -1141,10 +1149,6 @@ dnl --- If you add something here, consider whether or not you also
dnl --- need to add it to one or more .pc.in files (for Connector,
dnl --- etc)
-BASE_VERSION=`echo $VERSION | awk -F. '{print $1 "." $2;}'`
-AC_SUBST(BASE_VERSION)
-AC_DEFINE_UNQUOTED(BASE_VERSION, "$BASE_VERSION", [Base version (Major.Minor)])
-
privlibdir='${libdir}'/evolution/$BASE_VERSION
AC_SUBST(privlibdir)
@@ -1202,7 +1206,7 @@ dnl ************************
INTERFACE_VERSION="$BASE_VERSION"
AC_SUBST(INTERFACE_VERSION)
-AC_DEFINE_UNQUOTED(INTERFACE_VERSION, "INTERFACE_VERSION", [IDL interface version (Major.Minor)])
+AC_DEFINE_UNQUOTED(INTERFACE_VERSION, "$INTERFACE_VERSION", [IDL interface version (Major.Minor)])
EVO_SERVER_RULE=$srcdir/server.mk
AC_SUBST_FILE(EVO_SERVER_RULE)