From 78ec33320ff5837f23e85e336716692f63fd0254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Mon, 3 Aug 2015 15:01:35 +0200 Subject: don't use certain STL functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 
some functions defined in , as well as std::to_string aren't available on GNU's STL for some platforms, e.g. Android --- linux/main.cpp | 2 ++ linux/mapboxgl-app.gypi | 1 + 2 files changed, 3 insertions(+) (limited to 'linux') diff --git a/linux/main.cpp b/linux/main.cpp index 9145b180f4..9acbbb659f 100644 --- a/linux/main.cpp +++ b/linux/main.cpp @@ -12,6 +12,8 @@ #include #include #include +#include +#include namespace { diff --git a/linux/mapboxgl-app.gypi b/linux/mapboxgl-app.gypi index 35ca322e29..3d43da3847 100644 --- a/linux/mapboxgl-app.gypi +++ b/linux/mapboxgl-app.gypi @@ -29,6 +29,7 @@ 'variables' : { 'cflags_cc': [ + '<@(boost_cflags)', '<@(glfw3_cflags)', ], 'ldflags': [ -- cgit v1.2.1