diff options
author | jbeich <jbeich@FreeBSD.org> | 2019-08-11 14:40:50 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2019-08-11 14:40:50 +0800 |
commit | 84effe87f4b2aa08250108e529fd4e7fa21e3a5f (patch) | |
tree | 0b6ab718e0d2b78fbead153a35ce2e4595fc5543 | |
parent | c3559a9eb97fd26417bcfbf233c54a6447f23829 (diff) | |
download | freebsd-ports-gnome-84effe87f4b2aa08250108e529fd4e7fa21e3a5f.tar.gz freebsd-ports-gnome-84effe87f4b2aa08250108e529fd4e7fa21e3a5f.tar.zst freebsd-ports-gnome-84effe87f4b2aa08250108e529fd4e7fa21e3a5f.zip |
x11/kanshi: unbreak on GCC architectures
cc1: warnings being treated as errors
../parser.c: In function 'parse_config':
../parser.c:266: warning: 'key' may be used uninitialized in this function
../parser.c:266: note: 'key' was declared here
-rw-r--r-- | x11/kanshi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/kanshi/Makefile b/x11/kanshi/Makefile index 57bb9bbeba2b..9da53eba26bb 100644 --- a/x11/kanshi/Makefile +++ b/x11/kanshi/Makefile @@ -13,7 +13,7 @@ LICENSE= MIT LIB_DEPENDS= libwayland-client.so:graphics/wayland -USES= meson pkgconfig +USES= compiler:c11 meson pkgconfig USE_GITHUB= yes GH_ACCOUNT= emersion GH_TAGNAME= 76e9f41 |