File fix_transform_build_error.patch of Package osk-sdl
From 41f67e26b8e8466c0613ea51ff602c19e01c7009 Mon Sep 17 00:00:00 2001 From: Syboxez Blank <syboxez@gmail.com> Date: Fri, 17 Jun 2022 14:15:46 -0500 Subject: [PATCH] src/config.h: Fix build error with std::transform (MR 164) --- src/config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.h b/src/config.h index 441526e..80d83a7 100644 --- a/src/config.h +++ b/src/config.h @@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifndef CONFIG_H #define CONFIG_H +#include <algorithm> #include <map> #include <string> -- 2.37.3