summaryrefslogtreecommitdiff
path: root/im/src/im_lib.cpp
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 01:06:43 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 01:06:47 +0200
commit92efe73791d0998536042bfab5a1babc67d168c7 (patch)
tree6c5f7e9d9a8e5b439f50821f498ae6f6df776f36 /im/src/im_lib.cpp
parentf23d91bd3ba87c8fe6691af9ebd1a5210e2fbaec (diff)
Upgrading to IM 3.6.2, and doing some cleanup at the same time.
Diffstat (limited to 'im/src/im_lib.cpp')
-rwxr-xr-xim/src/im_lib.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/im/src/im_lib.cpp b/im/src/im_lib.cpp
index 4860ea7..499f5a9 100755
--- a/im/src/im_lib.cpp
+++ b/im/src/im_lib.cpp
@@ -2,7 +2,7 @@
* \brief Library Management
*
* See Copyright Notice in im_lib.h
- * $Id: im_lib.cpp,v 1.6 2010/04/23 17:45:44 scuri Exp $
+ * $Id: im_lib.cpp,v 1.8 2010/06/22 13:26:01 scuri Exp $
*/
#include <stdlib.h>
@@ -11,8 +11,9 @@
#include "im_lib.h"
/* This appears only here to avoid changing the im_lib.h header for bug fixes */
-#define IM_VERSION_FIX ".1"
-#define IM_VERSION_FIX_NUMBER 1
+#define IM_VERSION_FIX ".2"
+#define IM_VERSION_FIX_NUMBER 2
+#define IM_VERSION_FIX_DATE "2010/06/22"
static char *iVersion = "TECVERID.str:IM:LIB:" IM_VERSION IM_VERSION_FIX;
@@ -29,7 +30,11 @@ const char* imVersion(void)
const char* imVersionDate(void)
{
+#ifdef IM_VERSION_FIX_DATE
+ return IM_VERSION_FIX_DATE;
+#else
return IM_VERSION_DATE;
+#endif
}
int imVersionNumber(void)