Results 62 issues of Sergei Trofimovich

gcc-10 changed the default from -fcommon to fno-common: https://gcc.gnu.org/PR85678 As a result build fails as: ld: src/util.c.1.o:/build/pflask/build/../src/printf.h:42: multiple definition of `use_syslog'; src/cgroup.c.1.o:/build/pflask/build/../src/printf.h:42: first defined here

``` [3 of 6] Compiling Network.HTTP.LoadTest.Types ( lib/Network/HTTP/LoadTest/Types.hs, dist/build/Network/HTTP/LoadTest/Types.o ) lib/Network/HTTP/LoadTest/Types.hs:28:23: Module `Data.Hashable' does not export `Hashable(hash)' ```

gcc-11 became stricter and disallows ordered comparison against pointer and intereger. This caught the bug as a build failure: [ 10%] Building CXX object src/CMakeFiles/CHKSYSTEMD.dir/chk-systemd.cpp.o src/chk-systemd.cpp: In member function 'const...

gcc-10 changed the default from -fcommon to fno-common: https://gcc.gnu.org/PR85678 As a result build fails as: ld: label.o:src/template-history.h:31: multiple definition of `gl_template_history'; glabels-batch.o:src/template-history.h:31: first defined here ld: label-text.o:src/font-history.h:31: multiple definition of...

The hangup is observed and worked around in https://debbugs.gnu.org/cgi/bugreport.cgi?bug=50144 downstream. How to reproduce: I'm attaching [reproducer.tar.gz](https://github.com/mquinson/po4a/files/7025427/reproducer.tar.gz) with 1.3MB guix.texi. It's enough to run: ``` $ po4a-translate -d -M UTF-8 -L...

bug
help wanted
fmt:texinfo

On ncurses-6.3 the build fails as: src/keys.c:122:6: error: 'KEY_EVENT' undeclared here (not in a function); did you mean 'KEY_SLEFT'? 122 | {KEY_EVENT, "event"}, | ^~~~~~~~~ | KEY_SLEFT ncurses-6.3 deprecated KEY_EVENT...

… copy With help of 'make --shuffle' mode (https://savannah.gnu.org/bugs/index.php?62100) I found a few missing target dependencies in 'make install' of gpm. One of the failures is a reference to missing...

Was discovered at https://github.com/NixOS/nixpkgs/pull/136254#issuecomment-934690806 on NixOS after python update from 3.9.6 to 3.9.7. Two tests started failing. Posting full build log: ``` Sourcing pytest-remove-bytecode-hook.sh Sourcing python-remove-tests-dir-hook Sourcing python-catch-conflicts-hook.sh Sourcing python-remove-bin-bytecode-hook.sh...

In https://github.com/NixOS/nixpkgs/issues/155007 @foolnotion requested NixOS distribution to install `*.cmake` files by default. I guess helps easier development against `xxHash` for new cmake-based projects. I'm slightly worried that `xxHash`es `cmake` build...

`ncuses-6.3` added printf-style function attributes and now makes it easier to catch cases when user input is used in palce of format string when built with CFLAGS=-Werror=format-security: hstr.c:743:44: error: format...