don't redefine macro when using Visual Studio

SVN revision: 55494
This commit is contained in:
Vincent Torri 2010-12-11 13:11:59 +00:00
parent b237c16cf6
commit 063cfb735b
1 changed files with 12 additions and 4 deletions

View File

@ -30,10 +30,18 @@
#define NVALGRIND #define NVALGRIND
#define VMAJ 1 #ifndef VMAJ
#define VMIN 0 # define VMAJ 1
#define VMIC 0 #endif
#define VREV 0 #ifndef VMIN
# define VMIN 0
#endif
#ifndef VMIC
# define VMIC 0
#endif
#ifndef VREV
# define VREV 0
#endif
#define MODULE_ARCH "win32-msc-x86" #define MODULE_ARCH "win32-msc-x86"
#define SHARED_LIB_SUFFIX ".dll" #define SHARED_LIB_SUFFIX ".dll"