Description: Avoid compilation error with gcc-4.4. "const char* -> char*" conversion is fatal in that version Origin: vendor, https://bugs.launchpad.net/ubuntu/+source/kobodeluxe/+bug/461373 Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/kobodeluxe/+bug/461373 Bug-Debian: http://bugs.debian.org/552548 Forwarded: http://www.freelists.org/post/olofsonprojects/kobodlpatch-compile-error-in-windowcpp-with-g44 --- a/graphics/window.cpp +++ b/graphics/window.cpp @@ -398,7 +398,7 @@ void window_t::center_token_fxp(int _x, */ if(token) { - char *tok = strchr(txt, token); + const char *tok = strchr(txt, token); if(tok) tokpos = tok-txt; else 'hidden' name='showmsg' value='1'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/nfs.scm
AgeCommit message (Collapse)Author
2020-12-10gnu: nfs-utils: Fix location of external util-linux binaries.Tobias Geerinckx-Rice
Fixes: ~ λ sudo mount -t nfs 1.2.3.4:/ /mnt /gnu/store/aaa-nfs-utils-2.4.3/sbin/start-statd: line 10: /gnu/store/bbb-util-linux-2.35.1-lib/bin/flock: No such file or directory mount.nfs: rpc.statd is not running but is required for remote locking. * gnu/packages/nfs.scm (nfs-utils)[inputs]: Point the util-linux label at util-linux:out and add util-linux:lib as a separate input.
2020-09-24gnu: nfs-utils: Do not generate static libraries.Maxim Cournoyer
* gnu/packages/nfs.scm (nfs)[configure-flags]: Add "--disable-static".