Just another attempt to make MSVC happy

No idea why standalone libmv remo was all fine with the code..
This commit is contained in:
Sergey Sharybin
2014-12-31 19:03:48 +05:00
parent f31f28c3f4
commit 59742167ce
3 changed files with 4 additions and 6 deletions

View File

@@ -29,9 +29,7 @@
/* #undef HAVE_FNMATCH_H */
// Define if you have the <shlwapi.h> header file (Windows 2000/XP).
#ifdef WIN32
# define HAVE_SHLWAPI_H
#endif
#undef HAVE_SHLWAPI_H
// Define if you have the strtoll function.
#define HAVE_STRTOLL

View File

@@ -86,7 +86,7 @@
// We always want to export variables defined in user code
#ifndef GFLAGS_DLL_DEFINE_FLAG
# ifdef _MSC_VER
# if 0 && defined(_MSC_VER)
# define GFLAGS_DLL_DEFINE_FLAG __declspec(dllexport)
# else
# define GFLAGS_DLL_DEFINE_FLAG

View File

@@ -42,7 +42,7 @@
// We always want to import the symbols of the gflags library
#ifndef GFLAGS_DLL_DECL
# if 1 && defined(_MSC_VER)
# if 0 && defined(_MSC_VER)
# define GFLAGS_DLL_DECL __declspec(dllimport)
# else
# define GFLAGS_DLL_DECL
@@ -51,7 +51,7 @@
// We always want to import variables declared in user code
#ifndef GFLAGS_DLL_DECLARE_FLAG
# ifdef _MSC_VER
# if 0 && defined(_MSC_VER)
# define GFLAGS_DLL_DECLARE_FLAG __declspec(dllimport)
# else
# define GFLAGS_DLL_DECLARE_FLAG