diff --git a/debian/changelog b/debian/changelog index 52b3f31..20c6830 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +balboa (2.0.0+ds-2) unstable; urgency=medium + + * Fix build on MIPS systems. + + -- Sascha Steinbiss Tue, 23 Jul 2019 14:58:12 +0200 + balboa (2.0.0+ds-1) unstable; urgency=medium * New upstream release. diff --git a/debian/patches/print-uint64.patch b/debian/patches/print-uint64.patch new file mode 100644 index 0000000..e758af3 --- /dev/null +++ b/debian/patches/print-uint64.patch @@ -0,0 +1,26 @@ +Description: use proper format string +Author: Sascha Steinbiss +Last-Update: 2019-07-23 +--- a/backend/balboa-rocksdb/main.c ++++ b/backend/balboa-rocksdb/main.c +@@ -29,11 +29,9 @@ + -S disable signal handling\n\ + -R disable engine stats reporter\n\ + -j connection throttle limit, maximum concurrent connections (default: 64)\n\ +- --membudget rocksdb membudget option (value: %" PRIu64 +- ")\n\ ++ --membudget rocksdb membudget option (value: %zu)\n\ + --parallelism rocksdb parallelism option (value: %d)\n\ +- --max_log_file_size rocksdb log file size option (value: %" PRIu64 +- ")\n\ ++ --max_log_file_size rocksdb log file size option (value: %zu)\n\ + --max_open_files rocksdb max number of open files (value: %d)\n\ + --keep_log_file_num rocksdb max number of log files (value: %d)\n\ + --database_path same as `-d`\n\ +@@ -118,4 +116,4 @@ + blb_dbi_teardown(db); + + return (0); +-} +\ No newline at end of file ++} diff --git a/debian/patches/series b/debian/patches/series index 277dbea..fd3e916 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ uuid.patch release.patch spelling.patch +print-uint64.patch