Fix a string comparison in C++ 11. Taken from Debian: https://sources.debian.org/src/dbus-c++/0.9.0-8.1/debian/patches/06_fix_gcc-7_ftbfs.patch/ --- a/src/pipe.cpp +++ b/src/pipe.cpp @@ -83,5 +83,5 @@ ssize_t Pipe::read(void *buffer, unsigne void Pipe::signal() { // TODO: ignoring return of read/write generates warning; maybe relevant for eventloop work... - ::write(_fd_write, '\0', 1); + ::write(_fd_write, "\0", 1); } it-static/cgit.png' alt='cgit logo'/> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/cpan.scm
AgeCommit message (Expand)Author
2020-01-15import: cpan: Rewrite tests to use an HTTP server instead of mocking....Ludovic Courtès
2020-01-15import: cpan: Rewrite to use 'define-json-mapping'....Ludovic Courtès
2019-08-22Revert "import: cpan: Adapt for the change to guile-json version 3."...Mark H Weaver
2019-08-21import: cpan: Adapt for the change to guile-json version 3....Christopher Baines