From 4a4794e041edf85cb67b9fbba66ad1a22fdcaaec Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Sat, 29 Jan 2022 00:10:20 -0600 Subject: [PATCH] Fixes linux build with glibc-2.32. * cpulimit.c: Guard inclusion of which is needed only for __APPLE__ and is deprecated and unavailable starting with glibc-2.32. --- src/cpulimit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Submitted upstream at https://github.com/opsengine/cpulimit/pull/105 diff --git a/src/cpulimit.c b/src/cpulimit.c index 50eabea..be8cf22 100644 --- a/src/cpulimit.c +++ b/src/cpulimit.c @@ -38,13 +38,13 @@ #include #include #include -#include #include #include #include #ifdef __APPLE__ || __FREEBSD__ #include +#include #endif #include "process_group.h" -- 2.34.0 x
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-04-14doc: Use "dejavu sans" instead of "Helvetica" or "sans" in dot images....Font-dejavu is (now) an input of fontconfig. Specifying "dejavu sans" makes generated images reproducible even when other fonts are installed (notably font-google-noto). * doc/images/bootstrap-graph.dot, doc/images/bootstrap-packages.dot, doc/images/coreutils-bag-graph.dot, doc/images/coreutils-graph.dot, doc/images/gcc-core-mesboot0-graph.dot, doc/images/service-graph.dot, doc/images/shepherd-graph.dot: Use fontname = "dejavu sans". * doc/guix.texi (Full-Source Bootstrap): Update gcc-core-mesboot0.dot recipe accordingly. Change-Id: If21d7d39d45c66de5bceafb7b825a057d540ee50 Janneke Nieuwenhuizen
2022-05-12doc: Add the "Full-source Bootstrap"....* doc/guix.texi (Reduced Binary Seed Bootstrap): Update and rename to... (Full-Source Bootstrap): ...this. * doc/images/gcc-core-mesboot0-graph.dot: Regenerate. Jan (janneke) Nieuwenhuizen
2020-05-22doc: Update 'Bootstrapping' for further binary seed reduction....* doc/images/gcc-core-mesboot0-graph.dot: New image, replacing * doc/images/gcc-mesboot0-bag-graph.dot: ... remove file. * doc/local.mk (DOT_FILES): Update for new image file. * doc/guix.texi (Reduced Binary Seed Bootstrap): Use it in updated description of further reduction of the trusted computing base. Jan Nieuwenhuizen