From e12916c070caab334326aea72925c1cb903bfc97 Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 18 Nov 2016 16:58:57 +0200 Subject: [PATCH] Fixed issue #317 (Build error on raspberry pi) --- include/spdlog/details/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/os.h b/include/spdlog/details/os.h index d468ff45..1fc090be 100644 --- a/include/spdlog/details/os.h +++ b/include/spdlog/details/os.h @@ -344,7 +344,7 @@ inline std::string errno_str(int err_num) return "Unkown error"; #elif defined(__FreeBSD__) || defined(__APPLE__) || defined(ANDROID) || defined(__SUNPRO_CC) || \ - ((_POSIX_C_SOURCE >= 200112L) && ! _GNU_SOURCE) // posix version + ((_POSIX_C_SOURCE >= 200112L) && ! defined(_GNU_SOURCE)) // posix version if (strerror_r(err_num, buf, buf_size) == 0) return std::string(buf);