Files
termux-packages/packages/pikiwidb/fmt-11.patch
termux-pacman-bot 527e3f4d22 bump(main/pikiwidb): 3.5.6
- Project external branding renamed to "pikiwidb"; internal branding, configuration file name, and executable name still "pika"

- New dependencies `fmt`, `gflags`, `zlib`

- Switched to CMake

- Rewrite all patches; many dependencies had to be unvendored and build for Android forced

- Enable 32-bit ARM target

- Tested and appears to be working rootless on a standard device as long as "`eth1`" is changed to "`wlan0`" in the configuration file and then the modified configuration file is specified using `pika -c /path/to/modified/pika.conf`.
2026-01-02 23:37:20 +00:00

15 lines
345 B
Diff

Prevents
acl.cc:1225:48: error: no member named 'join' in namespace 'fmt'
when building with fmt 11
--- a/src/acl.cc
+++ b/src/acl.cc
@@ -4,6 +4,7 @@
// of patent rights can be found in the PATENTS file in the same directory.
#include <fmt/format.h>
+#include <fmt/ranges.h>
#include <cstring>
#include <fstream>
#include <shared_mutex>