Alexey Dokuchaev

Results 29 issues of Alexey Dokuchaev

`mksquashfs` obtains physical memory size via POSIX `sysconf(3)` call, but, per the comment that *sysconf(_SC_PHYS_PAGES) relies on /proc being mounted; if it fails use sysinfo*, also calls Linuxish `sysinfo(2)` unconditionally....

When trying to build the program on PowerPC, compilaton failed because of x86-specific header files for intrinsics. However, they seem to be unused, as removing these includes from `src/system_includes.h` allowed...

Consider attached [patch](https://github.com/LibreDWG/libredwg/files/3388944/decode-endian-fixes.txt). It might not be perfect and I've only tested it under FreeBSD (`#include `), so some adjustments are most certainly in order for GNU/Linux and other systems,...

enhancement

Two weeks ago I've [added](https://svnweb.freebsd.org/ports/head/sysutils/fsearch/) FSearch to FreeBSD _Ports Collection_. It required couple of changes in order to build that addressed certain Linux'isms. One of them (unconditional inclusion of `linux/limits.h`)...

enhancement

I think it got better with new version 2.4.1, yet it's still not quite right. Typically CJK characters should be twice as wide compared to the Latin ones so that...

I've tried versions 1.9.6 and 1.9.8, and they both fail to build on 32-bit architectures, e.g. [i386](https://lists.freebsd.org/archives/freebsd-pkg-fallout/2022-October/277524.html) and [ARM](https://lists.freebsd.org/archives/freebsd-pkg-fallout/2022-October/279060.html), apparently for the same reason: use of overloaded operator `[]` is...

bug

Clang is now quite strict about core correctness, see this error: ``` system.c:89:8: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] getTemp() ^...

I've decided that I don't need persistent package cache on my laptop and replaced `/var/cache/pkg` with a symlink to `/tmp/pkg`. Because I'm creating it manually after a reboot, sometimes I...

Doing `make test` for version 2.2 fails for me in the following way: ``` zcc +rc2014 -vn -I../../framework -DNO_LOG_RUNNING -DNO_LOG_PASSED ../../framework/test.c main.c strchr.c strcmp.c stricmp.c strlcat.c strlcpy.c strncat.c strncmp.c strrev.c...

build

There are minor issues with the code which upset modern C++ (they tend to become more and more strict). Consider applying the following small patch: ```patch --- bencodemodel.cpp.orig +++ bencodemodel.cpp...