forked from organicmaps/organicmaps
[win][mingw] Some compilation fixes
This commit is contained in:
parent
a4206cd253
commit
66eae08188
4 changed files with 5 additions and 3 deletions
|
@ -68,7 +68,7 @@ SOURCES += \
|
|||
|
||||
}
|
||||
|
||||
linux*|android* {
|
||||
linux*|android*|win32-g++ {
|
||||
SOURCES += src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc
|
||||
}
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
// By VNG: In defines below, in looks like we have a _DLL (wtf???).
|
||||
// But now we are linking like static library, so we should redefine GLAPI.
|
||||
#ifdef _MSC_VER
|
||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
||||
#undef GLAPI
|
||||
#define GLAPI extern
|
||||
#endif
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
#ifndef OMIM_OS_WINDOWS
|
||||
#include <signal.h>
|
||||
#else
|
||||
#include "../std/windows.hpp"
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ Timer::Timer()
|
|||
|
||||
double Timer::LocalTime()
|
||||
{
|
||||
#ifdef OMIM_OS_WINDOWS
|
||||
#ifdef OMIM_OS_WINDOWS_NATIVE
|
||||
FILETIME ft;
|
||||
GetSystemTimeAsFileTime(&ft);
|
||||
uint64_t val = ft.dwHighDateTime;
|
||||
|
|
Loading…
Add table
Reference in a new issue