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 > Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-05-08gnu: twinkle: Update package definition....* gnu/packages/patches/twinkle-bcg729.patch: New file. * gnu/packages/telephony.scm (twinkle)[source](patches): Use it. [build-system]: Change from cmake-build-system to qt-build-system. [arguments]<#:configure-flags>: Add "-DWITH_ZRTP", "-DWITH_G729". [arguments]<#:phases>[wrap-executable]: Delete phase. [native-inputs]: Move readline, file, ucommon, ccrtp, libxml2, speex, speexdsp, libsndfile, alsa-lib to ... [inputs]: ... here. Add bcg729, zrtpcpp, libilbc. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org> Raghav Gururajan