mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-27 01:11:33 +02:00
>From the error log, it seems this is a problem due to wiredtiger. The problem does not occure if using internal engine. Ensure mongodb is using internal provided wiredtiger engine instead of system one. An additional patch to avoid strtouq is needed.
12 lines
424 B
Diff
12 lines
424 B
Diff
--- mongodb-src-r3.2.3/src/third_party/wiredtiger/build_linux/wiredtiger_config.h.orig
|
|
+++ mongodb-src-r3.2.3/src/third_party/wiredtiger/build_linux/wiredtiger_config.h
|
|
@@ -101,7 +101,7 @@
|
|
#define HAVE_STRING_H 1
|
|
|
|
/* Define to 1 if you have the `strtouq' function. */
|
|
-#define HAVE_STRTOUQ 1
|
|
+/* #undef HAVE_STRTOUQ 1 */
|
|
|
|
/* Define to 1 if you have the `sync_file_range' function. */
|
|
/* #undef HAVE_SYNC_FILE_RANGE */
|