diff options
Diffstat (limited to 'plugins/Dbx_mdb')
-rw-r--r-- | plugins/Dbx_mdb/dbx_lmdb.vcxproj | 2 | ||||
-rw-r--r-- | plugins/Dbx_mdb/src/lmdb/lmdb.h | 6 | ||||
-rw-r--r-- | plugins/Dbx_mdb/src/lmdb/mdb.c | 6 | ||||
-rw-r--r-- | plugins/Dbx_mdb/src/lmdb/midl.h | 6 |
4 files changed, 16 insertions, 4 deletions
diff --git a/plugins/Dbx_mdb/dbx_lmdb.vcxproj b/plugins/Dbx_mdb/dbx_lmdb.vcxproj index b8b0406c35..fa4812577b 100644 --- a/plugins/Dbx_mdb/dbx_lmdb.vcxproj +++ b/plugins/Dbx_mdb/dbx_lmdb.vcxproj @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?>
-<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
diff --git a/plugins/Dbx_mdb/src/lmdb/lmdb.h b/plugins/Dbx_mdb/src/lmdb/lmdb.h index 41343879c1..747d2bbadd 100644 --- a/plugins/Dbx_mdb/src/lmdb/lmdb.h +++ b/plugins/Dbx_mdb/src/lmdb/lmdb.h @@ -166,7 +166,11 @@ #define _LMDB_H_ #include <sys/types.h> -#include <inttypes.h> +#if _MSC_VER < 1800 +# include <msapi/inttypes.h> +#else +# include <inttypes.h> +#endif #define MDB_VL32 1 diff --git a/plugins/Dbx_mdb/src/lmdb/mdb.c b/plugins/Dbx_mdb/src/lmdb/mdb.c index a99e079c7f..4ea8982871 100644 --- a/plugins/Dbx_mdb/src/lmdb/mdb.c +++ b/plugins/Dbx_mdb/src/lmdb/mdb.c @@ -136,7 +136,11 @@ extern int cacheflush(char *addr, int nbytes, int cache); #include <errno.h>
#include <limits.h>
#include <stddef.h>
-#include <inttypes.h>
+#if _MSC_VER < 1800
+# include <msapi/inttypes.h>
+#else
+# include <inttypes.h>
+#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/plugins/Dbx_mdb/src/lmdb/midl.h b/plugins/Dbx_mdb/src/lmdb/midl.h index b0d518ef03..91fa58f0fb 100644 --- a/plugins/Dbx_mdb/src/lmdb/midl.h +++ b/plugins/Dbx_mdb/src/lmdb/midl.h @@ -27,7 +27,11 @@ #define _MDB_MIDL_H_ #include <stddef.h> -#include <inttypes.h> +#if _MSC_VER < 1800 +# include <msapi/inttypes.h> +#else +# include <inttypes.h> +#endif #ifdef __cplusplus extern "C" { |