aboutsummaryrefslogtreecommitdiffstats
path: root/testing/mongodb/30-fix-backtrace.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-01-27 10:26:40 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-01-27 10:27:33 +0000
commit20eb1d0779b0da262cad1dc85486f1c111dd5420 (patch)
treebd23a20e9e33d81897bae53862d6a81408792515 /testing/mongodb/30-fix-backtrace.patch
parentd8c64a855f66683d6a5db7815b1854a9f1113813 (diff)
downloadaports-20eb1d0779b0da262cad1dc85486f1c111dd5420.tar.bz2
aports-20eb1d0779b0da262cad1dc85486f1c111dd5420.tar.xz
testing/mongodb: upgrade to 3.2.1
Diffstat (limited to 'testing/mongodb/30-fix-backtrace.patch')
-rw-r--r--testing/mongodb/30-fix-backtrace.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/testing/mongodb/30-fix-backtrace.patch b/testing/mongodb/30-fix-backtrace.patch
deleted file mode 100644
index bf576e2415..0000000000
--- a/testing/mongodb/30-fix-backtrace.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- orig/mongodb-src-r3.0.2/src/mongo/platform/backtrace.cpp
-+++ mongodb-src-r3.0.2/src/mongo/platform/backtrace.cpp
-@@ -28,6 +28,12 @@
- #if !defined(_WIN32)
- #if defined(__sunos__) || !defined(MONGO_HAVE_EXECINFO_BACKTRACE)
-
-+// dlfcn.h requires _GNU_SOURCE to be defined in order to export
-+// Dl_* structures. Issue gonna be addressed in 3.1.3, see SERVER-17199
-+#ifndef _GNU_SOURCE
-+# define _GNU_SOURCE
-+#endif
-+
- #include "mongo/platform/backtrace.h"
-
- #include <boost/smart_ptr/scoped_array.hpp>
-@@ -42,6 +48,8 @@
-
- using std::string;
- using std::vector;
-+
-+typedef Dl_info Dl_info_t;
-
- namespace mongo {
- namespace pal {