aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/install.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/system/install.scm')
0 files changed, 0 insertions, 0 deletions
'())) (arguments `(,@(if (%current-target-system) ;; The 'setpgrp' test cannot provide an answer when cross-compiling, ;; so provide the right one for glibc. `(#:configure-flags (list "ac_cv_func_setpgrp_void=yes" ;; TODO: Move this globally on the next ;; rebuild cycle. ;; Set a valid localstatedir for the ;; benefit of the default ;; 'daemon_pid_file_proc', used by the ;; Hurd's console client. "--localstatedir=/var")) '()) ,@(if (or (and=> (%current-target-system) target-aarch64?) (and=> (%current-target-system) target-riscv64?)) `(#:phases (modify-phases %standard-phases (add-before 'configure 'update-config.sub (lambda _ ;; Replace outdated config.sub such that aarch64 ;; will be recognised as an architecture. (delete-file "config.sub") (symlink (which "config.sub") "config.sub"))))) '()))) ;; XXX: Stale URL, missing replacement. See <http://bugs.gnu.org/18639>. (home-page "https://0pointer.de/lennart/projects/libdaemon/") (synopsis "Lightweight C library that eases the writing of UNIX daemons") (description "Libdaemon is a lightweight C library that eases the writing of UNIX daemons. It consists of the following parts: • A wrapper around fork() which does the correct daemonization procedure of a process • A wrapper around syslog() for simpler and compatible log output to Syslog or STDERR • An API for writing PID files • An API for serializing UNIX signals into a pipe for usage with select() or poll() • An API for running subprocesses with STDOUT and STDERR redirected to syslog. APIs like these are used in most daemon software available. It is not that simple to get it done right and code duplication is not a goal.") (license lgpl2.1+)))