Provide a 'mach_print' symbol in libc. --- a/sysdeps/mach/hurd/i386/libc.abilist 2020-04-01 19:22:44.710088821 +0200 +++ b/sysdeps/mach/hurd/i386/libc.abilist 2020-04-01 19:22:52.062051161 +0200 @@ -338,6 +338,7 @@ GLIBC_2.2.6 __mach_port_allocate F GLIBC_2.2.6 __mach_port_deallocate F GLIBC_2.2.6 __mach_port_insert_right F +GLIBC_2.21 __mach_print F GLIBC_2.2.6 __mach_reply_port F GLIBC_2.2.6 __mach_task_self_ D 0x4 GLIBC_2.2.6 __mach_thread_self F --- a/mach/Versions +++ b/mach/Versions @@ -56,6 +56,7 @@ } GLIBC_2.21 { __mach_host_self_; + mach_print; } HURD_CTHREADS_0.3 { ut type='hidden' name='id' value='321bb9f0e90140da6a7b064ce3892b261a494ece'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/guix-daemon.service.in
AgeCommit message (Expand)Author
2021-07-07guix-install.sh: Prompt for configuring substitutes discovery....Also ensure prompt_yes_no always print the message with a trailing space, which is more pleasing to the eye. * etc/guix-daemon.conf.in <--discover=no>: New guix-daemon option. * etc/guix-daemon.service.in: Likewise. * etc/init.d/guix-daemon.in: Likewise. * etc/openrc/guix-daemon.in: Likewise. * etc/guix-install.sh (configure_substitute_discovery): New procedure. (sys_enable_guix_daemon): Ask the user whether automatic substitute discovery should be enabled. Set the '--discover' argument accordingly. (prompt_yes_no): Add a trailing space to the message. (sys_authorize_build_farms): Remove trailing space from the message argument. * NEWS (Distribution): Add news. Maxim Cournoyer