aboutsummaryrefslogtreecommitdiffstats
path: root/non-free/mongodb/fix-strerror_r.patch
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-11 16:04:34 -0600
committerLeonardo Arena <rnalrd@alpinelinux.org>2019-04-03 08:49:55 +0000
commit8a901de31fa055ed591d487e12f8bb9ffcc0df21 (patch)
tree10bc98c626703819e94ec25bf0c2eaa0f6fe2cc9 /non-free/mongodb/fix-strerror_r.patch
parentfffa6ab6963a4a0045f99432ac487957791685ea (diff)
downloadaports-8a901de31fa055ed591d487e12f8bb9ffcc0df21.tar.bz2
aports-8a901de31fa055ed591d487e12f8bb9ffcc0df21.tar.xz
community/mongodb: expunge nonfree software
Upstream has switched to a nonfree license.
Diffstat (limited to 'non-free/mongodb/fix-strerror_r.patch')
-rw-r--r--non-free/mongodb/fix-strerror_r.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/non-free/mongodb/fix-strerror_r.patch b/non-free/mongodb/fix-strerror_r.patch
new file mode 100644
index 0000000000..172c7fefac
--- /dev/null
+++ b/non-free/mongodb/fix-strerror_r.patch
@@ -0,0 +1,13 @@
+--- 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) && (__ANDROID_API__ > 22)
+- msg = strerror_r(errNumber, buf, kBuflen);
+-#elif defined(_WIN32)
++#if defined(_WIN32)
+
+ LPWSTR errorText = nullptr;
+ FormatMessageW(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER |