From 91dbd8c4bb4c6e213a0594caec3c1bab799e57f9 Mon Sep 17 00:00:00 2001 From: MapsWithMe OSM User Date: Wed, 23 Jul 2014 17:18:54 +0200 Subject: [PATCH] [linux] Compilation fixes --- drape/gpu_buffer.cpp | 3 +++ routing/routing_tests/routing_tests.pro | 2 +- search/search_tests/string_intersection_test.cpp | 8 +++++++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/drape/gpu_buffer.cpp b/drape/gpu_buffer.cpp index f54db000ab..e34e59175b 100644 --- a/drape/gpu_buffer.cpp +++ b/drape/gpu_buffer.cpp @@ -4,6 +4,9 @@ #include "../base/assert.hpp" +#include "../std/cstring.hpp" + + namespace { bool IsMapBufferSupported() diff --git a/routing/routing_tests/routing_tests.pro b/routing/routing_tests/routing_tests.pro index 84e5a9dfb0..33ec07e021 100644 --- a/routing/routing_tests/routing_tests.pro +++ b/routing/routing_tests/routing_tests.pro @@ -6,7 +6,7 @@ CONFIG -= app_bundle TEMPLATE = app ROOT_DIR = ../.. -DEPENDENCIES = routing platform indexer geometry coding base protobuf +DEPENDENCIES = routing indexer platform geometry coding base protobuf macx-*: LIBS *= "-framework Foundation" "-framework IOKit" diff --git a/search/search_tests/string_intersection_test.cpp b/search/search_tests/string_intersection_test.cpp index b748ac7b00..ca690aefdc 100644 --- a/search/search_tests/string_intersection_test.cpp +++ b/search/search_tests/string_intersection_test.cpp @@ -1,8 +1,14 @@ #include "../../testing/testing.hpp" -#include "../../indexer/feature_covering.hpp" + #include "../search_string_intersection.hpp" + +#include "../../indexer/feature_covering.hpp" + #include "../../base/logging.hpp" +#include "../../std/cstdarg.hpp" + + namespace { typedef pair TestResult;