mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-11 20:30:53 +00:00
- 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`.
15 lines
345 B
Diff
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>
|