From 3cd497ee95771502f1ff045c65a57d18df3c6b1b Mon Sep 17 00:00:00 2001 From: osx2000 Date: Fri, 11 Nov 2016 14:28:45 +0100 Subject: [PATCH] extended conditional compilation to __SUNPRO_CC --- 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 86efa0dc..d468ff45 100644 --- a/include/spdlog/details/os.h +++ b/include/spdlog/details/os.h @@ -343,7 +343,7 @@ inline std::string errno_str(int err_num) else return "Unkown error"; -#elif defined(__FreeBSD__) || defined(__APPLE__) || defined(ANDROID) || \ +#elif defined(__FreeBSD__) || defined(__APPLE__) || defined(ANDROID) || defined(__SUNPRO_CC) || \ ((_POSIX_C_SOURCE >= 200112L) && ! _GNU_SOURCE) // posix version if (strerror_r(err_num, buf, buf_size) == 0)