From 316eaea209754368a57f445ea4dd016ecf8eded6 Mon Sep 17 00:00:00 2001 From: matthiakl Date: Sat, 14 Aug 2021 19:24:08 +0200 Subject: [PATCH] Added missing direct incude (#5025) --- This patch is from https://github.com/widelands/widelands/pull/5025 which has been merged after the release of Widelands 1.0. src/network/bufferedconnection.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/network/bufferedconnection.h b/src/network/bufferedconnection.h index fe974b9e..7e1ecf87 100644 --- a/src/network/bufferedconnection.h +++ b/src/network/bufferedconnection.h @@ -20,6 +20,7 @@ #ifndef WL_NETWORK_BUFFEREDCONNECTION_H #define WL_NETWORK_BUFFEREDCONNECTION_H +#include #include #include #include -- 2.30.2 ected='selected'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-02-07gnu: linux-libre: Build the snd-emu10k1 kernel module....Add the CONFIG_SND_EMU10K1=m and CONFIG_SND_EMU10K1_SEQ=m kernel options to all of our x86 and ARM configurations. The change automated via: $ git grep -rl CONFIG_SND_INDIGODJX | xargs grep -rL CONFIG_SND_EMU10K1=m \ | xargs sed '/CONFIG_SND_INDIGODJX=m/a\ CONFIG_SND_EMU10K1=m\nCONFIG_SND_EMU10K1_SEQ=m' -i Maxim Cournoyer
2022-02-07gnu: linux-libre: Enable CONFIG_ZONE_DMA in all configs....ZONE_DMA is still used by some kernel drivers such as older sound and network cards; it was already enabled on ARM and for some i686 kernels. Enable it everywhere for consistency. The change was automated with: $ git grep -rl CONFIG_ZONE_DMA | \ xargs sed 's/# CONFIG_ZONE_DMA is not set/CONFIG_ZONE_DMA=y/' -i * gnu/packages/aux-files/linux-libre/4.14-x86_64.conf: Enable CONFIG_ZONE_DMA. * gnu/packages/aux-files/linux-libre/4.19-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/4.4-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/4.9-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.10-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.10-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.15-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.15-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.16-i686.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.16-x86_64.conf: Likewise. * gnu/packages/aux-files/linux-libre/5.4-x86_64.conf: Likewise. Maxim Cournoyer