Codebase list balboa / 4cd8450
fix build on MIPS systems Sascha Steinbiss 4 years ago
3 changed file(s) with 33 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 balboa (2.0.0+ds-2) unstable; urgency=medium
1
2 * Fix build on MIPS systems.
3
4 -- Sascha Steinbiss <satta@debian.org> Tue, 23 Jul 2019 14:58:12 +0200
5
06 balboa (2.0.0+ds-1) unstable; urgency=medium
17
28 * New upstream release.
0 Description: use proper format string
1 Author: Sascha Steinbiss <satta@debian.org>
2 Last-Update: 2019-07-23
3 --- a/backend/balboa-rocksdb/main.c
4 +++ b/backend/balboa-rocksdb/main.c
5 @@ -29,11 +29,9 @@
6 -S disable signal handling\n\
7 -R disable engine stats reporter\n\
8 -j connection throttle limit, maximum concurrent connections (default: 64)\n\
9 - --membudget <memory-in-bytes> rocksdb membudget option (value: %" PRIu64
10 - ")\n\
11 + --membudget <memory-in-bytes> rocksdb membudget option (value: %zu)\n\
12 --parallelism <number-of-threads> rocksdb parallelism option (value: %d)\n\
13 - --max_log_file_size <size> rocksdb log file size option (value: %" PRIu64
14 - ")\n\
15 + --max_log_file_size <size> rocksdb log file size option (value: %zu)\n\
16 --max_open_files <number> rocksdb max number of open files (value: %d)\n\
17 --keep_log_file_num <number> rocksdb max number of log files (value: %d)\n\
18 --database_path <path> same as `-d`\n\
19 @@ -118,4 +116,4 @@
20 blb_dbi_teardown(db);
21
22 return (0);
23 -}
24 \ No newline at end of file
25 +}
00 uuid.patch
11 release.patch
22 spelling.patch
3 print-uint64.patch