diff options
author | Marc Vertes <mvertes@free.fr> | 2018-01-14 18:27:11 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-02-01 21:13:56 +0000 |
commit | 19d3a6876e744923c722745be0ae8cf2dd7f9b5e (patch) | |
tree | b0267030423fe47d6ba83e2ded9330057688d63a /community/mongodb/fix-backtrace.patch | |
parent | 1bb7f213d6973dc5183783beab74a72904625459 (diff) | |
download | aports-19d3a6876e744923c722745be0ae8cf2dd7f9b5e.tar.bz2 aports-19d3a6876e744923c722745be0ae8cf2dd7f9b5e.tar.xz |
community/mongodb: upgrade to 3.6.2
Diffstat (limited to 'community/mongodb/fix-backtrace.patch')
-rw-r--r-- | community/mongodb/fix-backtrace.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/community/mongodb/fix-backtrace.patch b/community/mongodb/fix-backtrace.patch new file mode 100644 index 0000000000..67cb7ca422 --- /dev/null +++ b/community/mongodb/fix-backtrace.patch @@ -0,0 +1,12 @@ +--- mongodb-src-r3.6.1/SConstruct.orig ++++ mongodb-src-r3.6.1/SConstruct +@@ -2896,7 +2896,8 @@ + if (conf.CheckCXXHeader( "execinfo.h" ) and + conf.CheckDeclaration('backtrace', includes='#include <execinfo.h>') and + conf.CheckDeclaration('backtrace_symbols', includes='#include <execinfo.h>') and +- conf.CheckDeclaration('backtrace_symbols_fd', includes='#include <execinfo.h>')): ++ conf.CheckDeclaration('backtrace_symbols_fd', includes='#include <execinfo.h>') and ++ conf.CheckFunc('backtrace')): + + conf.env.SetConfigHeaderDefine("MONGO_CONFIG_HAVE_EXECINFO_BACKTRACE") + |