summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-05-14 23:14:13 +0000
committerMatthew Barnes <mbarnes@src.gnome.org>2008-05-14 23:14:13 +0000
commit4b25c3c23e2d0079808d21704f4f52923b81d967 (patch)
treedb56f7c597452798ecb9523154c18130d75affc4
parente94d7adbaa07a3af6df7c7f06c8d4ddd1fd1a856 (diff)
downloadevolution-data-server-4b25c3c23e2d0079808d21704f4f52923b81d967.tar.gz
Added the wrong file to source control:
eds-version.h.in not eds-version.h svn path=/trunk/; revision=8794
-rw-r--r--libedataserver/eds-version.h.in (renamed from libedataserver/eds-version.h)20
1 files changed, 3 insertions, 17 deletions
diff --git a/libedataserver/eds-version.h b/libedataserver/eds-version.h.in
index 72b2d4cfe..59d75038c 100644
--- a/libedataserver/eds-version.h
+++ b/libedataserver/eds-version.h.in
@@ -29,10 +29,8 @@
* eds_major_version(), but from the headers used at application compile
* time, rather than from the library linked against at application run
* time.
- *
- * Since: 2.24
**/
-#define EDS_MAJOR_VERSION 2
+#define EDS_MAJOR_VERSION @EDS_MAJOR_VERSION@
/**
* EDS_MINOR_VERSION:
@@ -41,10 +39,8 @@
* eds_minor_version(), but from the headers used at application compile
* time, rather than from the library linked against at application run
* time.
- *
- * Since: 2.24
**/
-#define EDS_MINOR_VERSION 23
+#define EDS_MINOR_VERSION @EDS_MINOR_VERSION@
/**
* EDS_MICRO_VERSION:
@@ -53,10 +49,8 @@
* eds_micro_version(), but from the headers used at application compile
* time, rather than from the library linked against at application run
* time.
- *
- * Since: 2.24
**/
-#define EDS_MICRO_VERSION 3
+#define EDS_MICRO_VERSION @EDS_MICRO_VERSION@
/**
* EDS_CHECK_VERSION:
@@ -67,8 +61,6 @@
* Checks the version of the Evolution-Data-Server library. Returns
* %TRUE if the version of the EDS header files is the same as or newer
* than the passed-in version.
- *
- * Since: 2.24
**/
#define EDS_CHECK_VERSION(major,minor,micro) \
(EDS_MAJOR_VERSION > (major) || \
@@ -87,8 +79,6 @@ G_BEGIN_DECLS
* This variable is in the library, so it represents the EDS library you
* have linked against. Contrast with the EDS_MAJOR_VERSION macro, which
* represents the major version of the EDS headers you have included.
- *
- * Since: 2.24
**/
extern const guint eds_major_version;
@@ -101,8 +91,6 @@ extern const guint eds_major_version;
* This variable is in the library, so it represents the EDS library you
* have linked against. Contrast with the EDS_MINOR_VERSION macro, which
* represents the minor version of the EDS headers you have included.
- *
- * Since: 2.24
**/
extern const guint eds_minor_version;
@@ -115,8 +103,6 @@ extern const guint eds_minor_version;
* This variable is in the library, so it represents the EDS library you
* have linked against. Contrast with the EDS_MICRO_VERSION macro, which
* represents the micro version of the EDS headers you have included.
- *
- * Since: 2.24
**/
extern const guint eds_micro_version;