Fix GCC7 warnings. Taken from upstream: https://git.savannah.gnu.org/cgit/aspell.git/commit/?id=8089fa02122fed0a6394eba14bbedcb1d18e2384 diff --git a/modules/filter/tex.cpp b/modules/filter/tex.cpp index a979539..19ab63c 100644 --- a/modules/filter/tex.cpp +++ b/modules/filter/tex.cpp @@ -174,7 +174,7 @@ namespace { if (c == '{') { - if (top.in_what == Parm || top.in_what == Opt || top.do_check == '\0') + if (top.in_what == Parm || top.in_what == Opt || *top.do_check == '\0') push_command(Parm); top.in_what = Parm; diff --git a/prog/check_funs.cpp b/prog/check_funs.cpp index db54f3d..89ee09d 100644 --- a/prog/check_funs.cpp +++ b/prog/check_funs.cpp @@ -647,7 +647,7 @@ static void print_truncate(FILE * out, const char * word, int width) { } } if (i == width-1) { - if (word == '\0') + if (*word == '\0') put(out,' '); else if (word[len] == '\0') put(out, word, len); 's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/docker.scm
AgeCommit message (Expand)Author
2019-06-07services: Add Singularity....* gnu/packages/linux.scm (singularity)[source](snippet): Change file name of setuid helpers in libexec/cli/*.exec. [arguments]: Remove "--disable-suid". * gnu/services/docker.scm (%singularity-activation): New variable. (singularity-setuid-programs): New procedure. (singularity-service-type): New variable. * gnu/tests/singularity.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * doc/guix.texi (Miscellaneous Services): Document it. Ludovic Courtès
2019-05-05services: docker: Add new fields to support proxy....The Docker proxy enables inter-container and outside-to-container loopback, and is required by the Docker registry server. * gnu/services/docker.scm (docker-configuration)[proxy, enable-proxy?]: Add fields. (docker-shepherd-service): Use them. (serialize-boolean): New function. Maxim Cournoyer
2019-02-11services: docker: Make shepherd service also require "dbus-system",..."elogind" and "udev". Fixes <https://bugs.gnu.org/34333>. * gnu/services/docker.scm (docker-shepherd-service): Require "dbus-system", "elogind" and "udev". Danny Milosavljevic
2019-02-11services: docker: Make shepherd service require "networking"....Fixes <https://bugs.gnu.org/34333>. * gnu/services/docker.scm (docker-shepherd-service): Require "networking". Danny Milosavljevic