From e94cb28568e3712b39d5d37f37c5cc8b2bf32f0a Mon Sep 17 00:00:00 2001 From: Marc Vertes Date: Tue, 2 Jan 2018 11:20:46 +0000 Subject: community/mongodb: upgrade to 3.6.1 --- community/mongodb/fix-strerror_r.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 community/mongodb/fix-strerror_r.patch (limited to 'community/mongodb/fix-strerror_r.patch') diff --git a/community/mongodb/fix-strerror_r.patch b/community/mongodb/fix-strerror_r.patch new file mode 100644 index 0000000000..3dd19b3821 --- /dev/null +++ b/community/mongodb/fix-strerror_r.patch @@ -0,0 +1,13 @@ +--- mongodb-src-r3.6.1/src/mongo/util/errno_util.cpp.orig ++++ mongodb-src-r3.6.1/src/mongo/util/errno_util.cpp +@@ -58,9 +58,7 @@ + char buf[kBuflen]; + char* msg{nullptr}; + +-#if defined(__GNUC__) && defined(_GNU_SOURCE) +- msg = strerror_r(errNumber, buf, kBuflen); +-#elif defined(_WIN32) ++#if defined(_WIN32) + + LPWSTR errorText = nullptr; + FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | -- cgit v1.2.3