diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-06-20 13:46:42 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-06-20 13:46:42 +0000 |
commit | 5dc50515b56903ad73c811184b0ac8b5df6d1725 (patch) | |
tree | de4ad7ea03c3eaebe04c4fce0bf2adfd98de069b | |
parent | e209db0b4af8c55411e62386dbb83a0a662a858c (diff) |
Facebook: Fix for too much cleanup in [4851]
git-svn-id: http://svn.miranda-ng.org/main/trunk@5067 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/FacebookRM/src/version.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/protocols/FacebookRM/src/version.h b/protocols/FacebookRM/src/version.h index f77c2bc19c..7a3ac347d2 100644 --- a/protocols/FacebookRM/src/version.h +++ b/protocols/FacebookRM/src/version.h @@ -4,8 +4,11 @@ #define __BUILD_NUM 1
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
-#define __TOSTRING(x) #x
-#define __VERSION_STRING __TOSTRING(__FILEVERSION_STRING)
+#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS)
#define __PLUGIN_NAME "Facebook RM"
#define __FILENAME "Facebook.dll"
|