From f52d807f46a8843d7813be95be54bad629222c98 Mon Sep 17 00:00:00 2001 From: q66 Date: Tue, 29 Sep 2020 22:53:16 +0200 Subject: [PATCH] foot: fix stupid defaults breaking build on some musl setups Particularly, this may cause issues with ioctl, thanks to this thing's usage of -pedantic: ../render.c:2173:46: error: overflow in conversion from 'long unsigned int' to 'int' changes value from '2148037735' to '-2146929561' [-Werror=overflow] This is harmless, so make it not an error. --- srcpkgs/foot/template | 1 + 1 file changed, 1 insertion(+) diff --git a/srcpkgs/foot/template b/srcpkgs/foot/template index c3da31de9d7..617c84ff937 100644 --- a/srcpkgs/foot/template +++ b/srcpkgs/foot/template @@ -4,6 +4,7 @@ version=1.5.0 revision=1 wrksrc=$pkgname build_style=meson +configure_args="-Dwerror=false" hostmakedepends="pkg-config scdoc wayland-devel" makedepends="fcft-devel libxkbcommon-devel ncurses-devel tllist wayland-devel wayland-protocols"