diff options
Diffstat (limited to 'community/mongodb/fix-strerror_r.patch')
-rw-r--r-- | community/mongodb/fix-strerror_r.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/mongodb/fix-strerror_r.patch b/community/mongodb/fix-strerror_r.patch index 3dd19b3821..172c7fefac 100644 --- a/community/mongodb/fix-strerror_r.patch +++ b/community/mongodb/fix-strerror_r.patch @@ -1,10 +1,10 @@ ---- mongodb-src-r3.6.1/src/mongo/util/errno_util.cpp.orig -+++ mongodb-src-r3.6.1/src/mongo/util/errno_util.cpp +--- mongodb-src-r4.0.0/src/mongo/util/errno_util.cpp.orig ++++ mongodb-src-r4.0.0/src/mongo/util/errno_util.cpp @@ -58,9 +58,7 @@ char buf[kBuflen]; char* msg{nullptr}; --#if defined(__GNUC__) && defined(_GNU_SOURCE) +-#if defined(__GNUC__) && defined(_GNU_SOURCE) && (__ANDROID_API__ > 22) - msg = strerror_r(errNumber, buf, kBuflen); -#elif defined(_WIN32) +#if defined(_WIN32) |