From: Lindley French Date: Fri, 31 Jul 2015 00:33:11 +0000 (-0700) Subject: Make sure not to re-define __STDC_FORMAT_MACROS. X-Git-Tag: upstream/1.7.0^2~59^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de1dd6e0641b4aa279f9385f6c71a77c4efc31d4;p=platform%2Fupstream%2Fninja.git Make sure not to re-define __STDC_FORMAT_MACROS. --- diff --git a/src/build_log.cc b/src/build_log.cc index 281b851..589c6da 100644 --- a/src/build_log.cc +++ b/src/build_log.cc @@ -19,7 +19,9 @@ #include #ifndef _WIN32 +#ifndef __STDC_FORMAT_MACROS #define __STDC_FORMAT_MACROS +#endif #include #include #endif