diff --git a/base/condition_posix.cpp b/base/condition_posix.cpp index 65df58ba7e..be679649b4 100644 --- a/base/condition_posix.cpp +++ b/base/condition_posix.cpp @@ -7,8 +7,7 @@ #include "../std/stdint.hpp" #include "../std/systime.hpp" - -#include +#include "../std/errno.hpp" #include diff --git a/std/errno.hpp b/std/errno.hpp new file mode 100644 index 0000000000..c4f23e6959 --- /dev/null +++ b/std/errno.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include "common_defines.hpp" +#include "target_os.hpp" + +#ifdef new +#undef new +#endif + +// for errno +#ifdef OMIM_OS_WINDOWS + #include +#else + #include +#endif + +#ifdef DEBUG_NEW +#define new DEBUG_NEW +#endif