oooo-ps

Results 30 comments of oooo-ps

``` # uname -a Linux pocketbook 2.6.29.6 #1 PREEMPT Fri Dec 9 16:04:47 EET 2011 armv6l GNU/Linux ``` * for `ldd --version` it seems there is no output...

I'm noob in cross-compilation, and have this issue, when running `./kodev release pocketbook` (patched) on Linux / amd64: ``` make TARGET=pocketbook KODEBUG= VERBOSE= update bash: line 1: arm-kindle-linux-gnueabi-gcc: command not...

Thanks much, > Quick'n dirty base patch, untested in addition to this patch - there's missed `KINDLE=1` flag as it is activating required header in `base/input/input.c` ``` base/Makefile.defs else ifeq...

As understand, compiler can't connect the dyn header for one of methods in `base/input/input.c`, until I set any flag from this list: ``` base/input/input.c #if defined(KINDLE) # include "input-kindle.h" #elif...

@benoit-pierre > You'll need this patch for fbink This patch does not disconnect headers `input/input.c` with the following build error: ``` bash ▸ 40% | Building 'koreader' ninja: Jobserver mode...

hm, but without `KINDLE` I have at least following error: ``` bash koreader/base/input/input.c:145:13: error: implicit declaration of function 'generateFakeEvent' [-Wimplicit-function-declaration] 145 | generateFakeEvent(pipefd); | ^~~~~~~~~~~~~~~~~ ninja: build stopped: subcommand failed....

I'm working on [aquatic-crawler](https://github.com/YGGverse/aquatic-crawler), an aggregation tool that interacts with the API mentioned above and converts info-hashes (using [librqbit](https://github.com/ikatson/rqbit/tree/main/crates/librqbit)) to `.torrent` files, Manticore full-text search index, SQLite, and other permanent...

I've recently created a binary API as I prefer it over parsing JSON. Additionally, the binary API includes dump file comparison and prevents extra write operations, which helps extend the...

To build this branch on the older Glib versions: I've replaced: ``` gtk/IPToLocation.cc if (!Glib::file_test(mmdb_file, Glib::FileTest::EXISTS)) ``` to ``` gtk/IPToLocation.cc if (!Glib::file_test(mmdb_file, Glib::FileTest::FILE_TEST_EXISTS)) ``` Some [tips](https://devzone.org.ua/post/heo-lokatsiia-piriv-dlia-transmission-gtk) about how to build...

@gmou3 I'm using this branch about few months without any issues, about this my `Glib::FileTest::EXISTS` issue - it is not actual after upgrade to GNOME 48 Thanks for your work!